-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
57 lines (40 loc) · 1.99 KB
/
index.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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<!DOCTYPE html>
<html>
<head>
<title>Ayushi survey form</title>
</head>
<body>
<form action ="http://google.co.in">
<div align="center">
<h1 style="color: rgb(24, 24, 218);" style="font-family: serif;" > Interest form</h1>
enter your name:
<input type="text" name="Username" size="35" maxlength="40" value=""><br></br>
enter your college:
<input type="text" name="clg" size="35" maxlength="40" value=""><br></br>
Tell me about yourself:
<textarea name="Comments" cols="30" rows="4"></textarea><br></br>
do you exercise during lockdown:
<input type="radio" name="exe" value=1>Yes
<input type="radio" name="exe" value=2>No <br></br>
HOw do you like to read about your favourite topics:
<p>
<input type="checkbox" name="books">Books
<input type="checkbox" name="web">Online resources
<input type="checkbox" name="elders">Through elders
<input type="checkbox" name="phone">Phones
<input type="checkbox" name="magazines">magazines
</p>
what genre of movies do you like:
<select name="moviepref"><option>
<option value=1 selected = "true">comedy
<option value=2 >romance
<option value=3 >thriller
<option value=4 >horror
<option value=5 >biopic
</select>
</br></br>
<input type=submit value="Submit form">
</div>
</form>
</body>
</html>