-
Notifications
You must be signed in to change notification settings - Fork 423
/
Copy pathsurvey-form.html
75 lines (73 loc) · 2.66 KB
/
survey-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
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
<!DOCTYPE html>
<!-- This is how HTML comments look like -->
<html>
<!-- the title will appear on the page-->
<head>
<title>Employee Interests Survey</title>
</head>
<body>
<!-- as it is a survey form, we will need to submit the details, hence we use form -->
<!-- We can give absolute url, or relative url like /nextpage.jsp, and specify POST or GET method -->
<form action="http://google.co.in">
<!-- If we remove this, every thing will move to the left of the page-->
<div align="center">
<!--Adds a heading to the form-->
<h1>Employee Interests Survey form</h1>
Enter your name:
<!-- Input type text for small texts, specify size -->
<input
type="text"
name="UserName"
size="35"
maxlength="35"
value=""
required
/>
<!--Adds spaces - remove and see what happens -->
<br /><br />
Enter your department:
<input
type="text"
name="Deptt"
size="35"
maxlength="35"
value=""
required
/>
<br />
<br />
Tell us a little about yourself:
<!-- For writing lot of text like descriptions with text wrapping,
if you dont want text wrapping, you can add wrap = "off" (horizontal scrollbar -->
<textarea name="Comments" cols="30" rows="4"></textarea>
<br />
<br />
Do you exercise at home?
<!-- Radio buttons help you choose one out of the many values -->
<input type="radio" name="exe" value="1" required />Yes
<input type="radio" name="exe" value="2" required />No
<p>How do you like to read about your favorite topics?</p>
<p>
<!--Checkbox lets you select multiple options -->
<input type="checkbox" name="Books" />Books
<input type="checkbox" name="Web" />Online resources
<input type="checkbox" name="Phone" />Phone apps
<input type="checkbox" name="Magazines" />Magazines
</p>
What genre of movies do you like?
<!--Select box lets you choose one of the multiple dropdown options-->
<select name="moviepref">
<option></option>
<option value="1" selected="true">comedy</option>
<option value="2">romance</option>
<option value="3">thriller</option>
<option value="4">horror</option>
<option value="5">biopic</option>
</select>
<br /><br />
<!--submits the information entered in the form by the user -->
<input type="submit" value="Submit form" />
</div>
</form>
</body>
</html>