-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
54 lines (50 loc) · 2.39 KB
/
index.html
File metadata and controls
54 lines (50 loc) · 2.39 KB
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
<html>
<head>
<title>Student Registration Form</title>
</head>
<body>
<div class="topnav">
<a class="active" href="#home">Home</a>
<a href="#contact">Contact</a>
<a href="#about">About</a>
<a href="#projects">Projects</a>
</div>
<h1>Student Registration Form</h1>
<form>
<lable for="fname">First Name:</lable><br>
<input type="text" id="fname" name="fname"><br>
<lable for="lname">Last Name:</lable><br>
<input type="text" id="lname" name="lname"><br>
<lable for="DOB">DOB:</lable><br>
<input type="date" id="DOB" name="DOB"><br>
<label for="fathername">Father Name:</label><br>
<input type="text" id="fathername" name="fathername"><br>
<label for="document">Document:</label><br>
<input type="radio" id="aadhar" value="aadhar" name="document">
<label for="aadhar">Aadhar</label><br>
<input type="radio" id="drivingl" name="document" value="drivingl">
<label for="drivingl">Driving Lisense</label><br>
<input type="radio" id="other" value="other" name="document">
<label for="other">Other</label><br>
<label for="gender">Gender:</label>
<select id="gender" name="gender">
<option value="male" selected>Male</option>
<option value="female">Female</option>
<option value="other">Other</option>
</select><br>
<label for="discription">Discription</label><br>
<textarea name="message" style="width: 250px; height: 50px;"></textarea><br>
<input type="checkbox" id="confirm" name="confirm" value="confirm">
<label for="confirm">Confirm</label><br>
<input type="submit" value="submit"><br>
</form><br>
<p>Made by Anushtha
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<div class="icon-bar">
<a href="#"><i class="fa fa-address-book"></i></a>
<a href="#"><i class="fa fa-envelope"></i></a>
<a href="#"><i class="fa fa-facebook"></i></a>
<a href="#"><i class="fa fa-instagram"></i></a>
</p>
</body>
</html>