-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathform2.html
34 lines (30 loc) · 1.07 KB
/
form2.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Form2</title>
</head>
<body>
<form action="/action_page.php">
<h1>Student Registration</h1>
<input type="text" placeholder="Full Name"> <br><br>
<input type="text" placeholder="Email"> <br> <br>
<input type="text" placeholder="Contact No."> <br> <br>
<input type="text" placeholder="City"> <br> <br>
<hr>
Gender <br><br>
<input type="radio" value="male" name="gender">Male
<input type="radio" value="Female" name="gender"> Female
<hr> <br>
Hobbies <br>
<input type="radio" value="Sports" name="Hobbies"> Sports
<input type="radio" value="Esports" name="Hobbies"> Esports
<input type="radio" value="Streaming" name="Hobbies"> Streaming
<input type="radio" value="Vlogging" name="Hobbies">Vlogging
<hr> <br>
<input type="text" placeholder="Password"> <br> <br>
<input type="submit" value="Register">
</form>
</body>
</html>