forked from sarthikbabuta/HTML
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathform.html
More file actions
43 lines (43 loc) · 1.02 KB
/
form.html
File metadata and controls
43 lines (43 loc) · 1.02 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
31
32
33
34
35
36
37
38
39
40
41
42
43
<html>
<head>
<title> Forms</title>
</head>
<body>
<form>
Enter Your Name:-
<br>
<input type="radio" value="Sarthik" checked>Sarthik<br>
<input type="radio" value="Sahil">Sahil<br>
<input type="radio" value="Rahul">Rahul<br>
<br>
Enter Your Gender:-
<br>
<input type="radio" value="male" checked>Male<br>
<input type="radio" value="female">Female<br>
<br>
<br>
Enter Your Rollno:-
<br>
<input type="radio" value="1510991586" checked>1510991586<br>
<input type="radio" value="1510991585">1510991585<br>
<input type="radio" value="1510991584">1510991584<br>
<br>
<input type="Submit" value="Submit">
<br>
<br>
Name:-<input type="text" name="abcd" size="20" maxlength="4"><br><br>
Password:-<input type="password" name="password"><br><br>
<textarea rows="4" cols="50" name="abcd">
</textarea>
<br>
<br>
subject:-
<br>
<input type="checkbox" name="maths">maths<br>
<input type="checkbox" name="physics">physics<br>
<select name="dropdown">
<option value="Sarthik" selected>sarthik</option>
<option value="Babuta">babuta</option>
</form>
</body>
</html>