-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathform.html
33 lines (33 loc) · 1.01 KB
/
form.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
<DOCTYPE! html>
<html>
<head>
<title>Registration form</title>
</head>
<body>
<h2>Registration form</h2>
<form>
<h3>Enter your details</h3>
<label for="txt_name">Name:</label>
<input type="text" name="txt_name"><br><br>
<label for="password">Password:</label>
<input type="password" name="password"><br><br>
<label for="roll">Rollno:</label>
<input type="text" name="roll"><br><br>
<label for="section">Section</label>
<input type="text" name="section"><br><br>
<input type="checkbox" >I agree to the terms and conditions<br>
<input type="file"><br>
<h4>Select your year</h4>
<input type="radio" name="year" value="First">First year
<input type="radio" name="year" value="Second">Second year<br>
<h4>Enter your college name</h4>
<select name="college">
<option value="kmit">KMIT</option>
<option value="ngit">NGIT</option>
<option value="bvrit">BVRIT</option>
<option value="vasavi">VASV</option>
<option value="griet">GRIET</option>
<br><input type="submit" value="SUBMIT">
</form>
</body>
</html>