-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathd.html
40 lines (35 loc) · 1.29 KB
/
d.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
<html>
<head>
<title>First</title>
<link href="style1.css" rel="stylesheet" type="text/css"></link>
</head>
<body>
<header>
<nav>
<h1>Submit your details</h1>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="contact.html">Contact</a></li>
<li><a href="about.html">About</a></li>
</ul>
</nav>
</header>
<div id="break"></div>
<div class="form-body">
<form class="form">
<br>
<label class="l1">Name </label><input type="text" required>
<br><br>
<label class="l1"> Email </label><input type="email" required><br><br>
<label class="l1"> Gender </label>
<input type="radio"><label>Male</label>
<input type="radio"><label> Female</label>
<input type="radio"><label> Other</label>
<br><br>
<label class="l1"> Date of Birth </label><input type="date"><br><br>
<button><b>Submit</b></button>
<br><br>
</form>
</div>
</body>
</html>