-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSurvey.html
More file actions
68 lines (68 loc) · 2.25 KB
/
Survey.html
File metadata and controls
68 lines (68 loc) · 2.25 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
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
<!doctype html>
<html>
<meta charset="UTF-8"/>
<head>
<title>Morgan Freeman</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<div class="container">
<div id="Name">
<h1><i>Morgan Freeman</i></h1>
</div>
<nav>
<ul>
<li><a href="home.html">Home</a></li>
<li><a href="form.html">Survey</a></li>
<li><a href="media.html">Media</a></li>
</ul>
</nav>
</div>
</header>
<section id="surveys">
<div class="container">
<form id="MyForm" action="home.html">
<fieldset>
<center>
<h2><label for="firstQ">How did you find out about this website?</label></h2>
<h3>
<input id="1stQ" type="radio" name="1stQ" value="Friends" required><i>Friends</i></input>
<input id="1stQ" type="radio" name="1stQ" value="Random search"><i>Random search</i></input>
<input id="1stQ" type="radio" name="1stQ" value="Others"><i>Others</i></input>
</h3>
<hr>
<h2><label for="secondQ">How likely are you to visit this website again?</label></h2>
<h3>
<input id="2ndQ" type="radio" name="2ndQ" value="definitly will come back" required><i>definitly will come back</i></input>
<input id="2ndQ" type="radio" name="2ndQ" value="Maybe"><i>Maybe</i></input>
<input id="2ndQ" type="radio" name="2ndQ" value="Never"><i>Never</i></input>
</h3>
<hr>
<h2><label for="thirdQ">what do you think of the website?</label></h2>
<h3>
<input id="3rdQ" type="radio" name="3rdQ" value="Awesome"required><i>Awesome</i></input>
<input id="3rdQ" type="radio" name="3rdQ" value="Alright"><i>Alright</i></input>
<input id="3rdQ" type="radio" name="3rdQ" value="Bad"><i>Bad</i></input>
</h3>
<hr>
<h2><label for="fourthQ">How was the survey?</label></h2>
<h3>
<input id="4thQ" type="radio" name="4thQ" value="Awesome"required><i>Awesome</i></input>
<input id="4thQ" type="radio" name="4thQ" value="Alright"><i>Alright</i></input>
<input id="4thQ" type="radio" name="4thQ" value="Bad"><i>Bad</i></input>
</h3>
<hr>
<h2><label for="fifthQ">What do you think of Morgan Freeman?</label></h2>
<h3>
<textarea id = "5thQAnswer"rows = "3" cols = "80" required placeholder="Please Type Here"></textarea>
</h3>
<input type=submit value="Submit"/>
</center>
</fieldset>
</form>
</div>
</section>
</body>
<center><footer><i>Morgan Freeman, Copyright © 2018</i></footer></center>
</html>