-
Notifications
You must be signed in to change notification settings - Fork 0
/
class09(Formsbasics).html
92 lines (77 loc) · 2.35 KB
/
class09(Formsbasics).html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>HTML forms</title>
</head>
<body>
<h2>Welcome to my Portal.</h2>
<form>
<p>
<label>Username: <input type="text" required/></label>
</p>
<p>
<label>Password:<input type="password" /></label>
</p>
<p>
<label>Email:<input type="email"></label>
</p>
<label>Male <input type="radio" name="gender" value="male"></label>
<p>
</p>
<label>female <input type="radio" name="gender" value="female"></label>
<p>
</p>
<label>others <input type="radio" name="gender" value="others"></label>
<ul>
<li><input type="checkbox" name="Subjects" value="DBMS">DBMS</li>
<li><input type="checkbox" name="Subjects" value="DBMS">Mathematics</li>
<li><input type="checkbox" name="Subjects" value="DBMS">Physics</li>
<li><input type="checkbox" name="Subjects" value="DBMS">DSA</li>
</ul>
<p>
<button type="submit">Submit</button>
</p>
</form>
</body>
</html>
<!-- <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>HTML5-Introduction</title>
<header>section ot any content's heading</header>
<style>
.Edyoda{
font-size: 50px;
color: blue;
}
</style>
</head>
<body>
<p>HTML full form - Hyper Text Markup langugae</p>
<p>HTML 5 - fifth version of the HTML</p>
<nav>nav bar generally used for navigation to multiple pages</nav>
<p>Appointment booking time is <time datetime="2023-08-06">June</time></p>
<label for="progress">Downloading file in progress</label>
<progress id="progress" value="50" max="100">32%</progress>
<!--Graphics-->
<svg></svg>
<canvas></canvas>
<video></video>
<audio></audio>
<source>
<track>
<div class="Edyoda">Edyoda</div>
<aside>
<div>Edyoda class by Jayesh Vyas</div>
</aside>
</body>
</html>
<footer>Footer tag in html</footer>
-->
<!-- -->