-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
59 lines (43 loc) · 2.07 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
58
59
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Survey form</title>
<link rel="stylesheet" type="text/css" href="https://raw.githubusercontent.com/nitukumari34/nitukumari34.github.io/main/stylesheet.css">
</head>
<body>
<h1>Employee Interest Survey form</h1>
<form action="">
<lable for="yourname">Enter your name:</lable>
<input name="yourname" id="yourname" type="text" value="">
<br><br>
<lable for="department">Enter your department:</lable>
<input name="department" id="department" type="text" value="">
<br><br>
<label for="">Tell us a little about yourself:</label>
<textarea name="textarea" id="" cols="30" rows="5"></textarea>
<br><br>
<label for="yes_no_radio">Do you exercise at home?</label>
<input name="affirmative" id="yes" type="radio" value="yes">Yes </input>
<input name="affirmative" id="no" type="radio" value="no"> No</input>
<br><br>
<label for="">How do you like to read about your favorite topics?</label>
<br><br>
<input name="topic" id="books" type="checkbox" value="books">Books
<input name=" topic" id="online_resources" type="checkbox" value="online_resorces"> Online resources
<input name="topic" id="phone_apps" type="checkbox" value="Phone apps"> Phone apps
<input name="topic" id="Magazines" type="checkbox" value="Magazines">Magazines
<br><br>
<label for="movies_do_you_like">What genre of movies do you like?</label>
<select name="movies_do_you_like" id="movies">
<option value="comedy">comedy</option>
<option value="hollybood">hollybood</option>
<option value="bollybood">bollybood</option>
</select>
<br><br>
<input type="submit" value="submit form">
</form>
</body>
</html>