-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtask-1.html
69 lines (60 loc) · 2.14 KB
/
task-1.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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="https://pro.fontawesome.com/releases/v5.10.0/css/all.css" integrity="sha384-AYmEC3Yw5cVb3ZcuHtOA93w35dYTsvhLPVnYs9eStHfGJvOvKxVfELGroGkvsg+p" crossorigin="anonymous"/>
</head>
<style>
.header{
height:4px;
background-color:black;
margin-bottom:10px;
}
body{
margin-left:350px;
width:600px;
}
</style>
<body>
<div class="header"></div>
<nav>
<a href="https://www.lasya404/home" class="active" style="color:darkblue">Home</a> |
<a href="https://www.lasya404/contact">Contact</a> |
<a href="https://www.lasya404/about">About</a> |
<a href="https://www.lasya404/projects">Projects</a>
</nav><br><br>
<h1>Student Registration Form</h1>
<form action="/action_page.php">
<label for="fname">First name:</label><br>
<input type="text" id="fname" value="Lasya"><br>
<label for="lname">Last name:</label><br>
<input type="text" id="lname" value="Sree"><br><br>
<label for="dob">DOB:</label><br>
<input type="date" id="dob" name="dob" placeholder="dd-mm-yyyy"><br><br><br>
<label for="dname">Father's Name:</label><br>
<input type="text" id="dname" value=""><br><br>
<label for="document">Document:</label><br>
<input type="radio" id="adhaar" name="document" value="Adhaar">
<label for="male">Adhaar</label><br>
<input type="radio" id="dl" name="document" value="DrivingLicense">
<label for="female">Driving License</label><br>
<input type="radio" id="other" name="document" value="other">
<label for="other">Other</label><br><br>
<label for="gender">Gender:</label>
<select name="male" id="male">
<option value="male">Male</option>
<option value="female">Female</option>
</select><br><br>
<label for="description">Description:</label><br>
<textarea id="des" name="description" rows="4" cols="50"></textarea><br><br>
<input type="checkbox" id="confirm" name="confirm" value="confirm">
<label for="checkbox"> Confirm</label><br>
<button type="submit" form="form1" value="Submit">Submit</button><br><br><br><br>
</form>
<footer>Made By Lasya
<i class="fas fa-address-book"></i>
<i class="fas fa-envelope"></i>
<i class="fab fa-facebook-f"></i>
<i class="fab fa-instagram"></i>
</footer>
</body>
</html>