-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathWebD.Html
91 lines (83 loc) · 1.86 KB
/
WebD.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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">"
<title>Student Registration Form</title>
</head>
<body>
<header>
<ul>
<li><a href="">Home</a></li>
<li><a href="">Projects</a></li>
<li><a href="">About</a></li>
</ul>
<br/>
<br/>
<br/>
</header>
<main>
<h1>Student Registration Form</h1>
<br/>
<br/>
<label for="fname">First name:</label><br>
<input type="text" id="fname" name="fname><br>
<label for="lname">Last name:</label><br>
<input type="text" id="lname" name="lname">
<br/>
<br/>
<label for="date">DOB:</lable> <input id="date" style="display"
<br/>
<br/>
<br/>
<br/>
<lable for="fname">Father's Name:</lable><br>
<input type="text" id="fname" name="fname"><br>
<br/>
<br/>
<span>
Documents
<br/>
<input type="radio"/>Adhar
<br/>
<input type="radio"/>Driving License
<br/>
<input type="radio"/>Other
</label>
</span>
<br/>
<br/>
<br/>
<br/>
<lable for="gender">Gender</lable>
<select>
<option>Male</option>
<option>Female</option>
</select>
<br/>
<br/>
<br/>
<br/>
Description
<br/>
<input type="checkbox">Confirm
<br/>
<input type="submit">
<br/>
</main>
<br/>
<br/>
<br/>
<footer>
<span>
Made By Taniya
<i class="fa fa-address-book" aria-hidden="true"></i>"
<i class="fa fa-envelope" aria-hidden="true"></i>
<i class="fa fa-facebook-official" aria-hidden="true"></i>
<i class="fa fa-instagram" aria-hidden="true"></i>
</span>
<br/>
<br/>
<br/>
</footer>
</body>
</html>