-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlab3_9.html
More file actions
28 lines (27 loc) · 808 Bytes
/
lab3_9.html
File metadata and controls
28 lines (27 loc) · 808 Bytes
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
<!DOCTYPE html>
<html>
<head>
</head>
<body>
<h2>STUDENT REGISTRATION FORM</h2>
<form action="ERROR">
<label for=" First name">First Name</label>
<div>
<input type="text" first name="first name" id=" first name">
</div>
<label for="last name">Last name</label>
<div>
<input type="text" last name="last name" id="last name">
</div>
<br>
<div>
Roll No.: <input type="text" name="myRoll">
</div>
<br>
<div>
<input type="submit" value="Submit now">
<input type="reset" value="Reset now">
</div>
</form>
</body>
</html>