-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathday5.html
More file actions
30 lines (30 loc) · 1.11 KB
/
day5.html
File metadata and controls
30 lines (30 loc) · 1.11 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
<!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">
<link rel="stylesheet"href="style2.css">
<title>Document</title>
</head>
<body>
<p>FORM:</p>
<form>
<label for="name">Name:</label>
<input type="text"id="name"name="name"><br><br>
<label for="rollno">Rollno:</label>
<input type="rollno"id="rollno"name="rollno"><br><br>
<label for="gender">Gender:</label>
<input type="gender"id="gender"name="gender"><br><br>
<label for="age">Age:</label>
<input type="age"id="age"name="age"><br><br>
<label for="section">Section:</label>
<input type="section"id="section"name="section"><br><br>
<label for="email">Email:</label>
<input type="email"id="email"name="email"><br><br>
<label for="college">College:</label>
<input type="college"id="college"name="college"><br><br>
<input type="submit"value="submit">
</form>
</body>
</html>