-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathStudentApp.html
32 lines (26 loc) · 915 Bytes
/
StudentApp.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>2022ebcs056</title>
<script src="StudentApp.js"></script>
</head>
<body>
<!--2022ebcs056-->
<h3>Student ID Card Application Form</h3>
<form id="studentForm">
<label for="name">Name:</label>
<input type="text" id="name" required><br>
<label for="dob">Date of Birth (dd/mm/yyyy):</label>
<input type="text" id="dob" required><br>
<label for="age">Age:</label>
<input type="text" id="age" required><br>
<label for="mobile">Mobile Number:</label>
<input type="text" id="mobile" required><br>
<label for="email">Email ID:</label>
<input type="email" id="email" required><br>
<button>Submit</button>
</form>
</body>
</html>