-
Notifications
You must be signed in to change notification settings - Fork 0
/
survey.html
118 lines (95 loc) · 2.7 KB
/
survey.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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
<!DOCTYPE html>
<html lang="en">
<head>
<title>Page Title Goes Here</title>
<meta charset="utf-8">
<link rel="stylesheet" type="text/css" href="style.css">
<link href="https://fonts.googleapis.com/css?family=Open+Sans:300|Roboto" rel="stylesheet">
</head>
<body>
<nav class="navbar">
<a id="backbutton" href="dashboard.html" style="font-size: 200%;margin:15px; display: inline-block;color: white;"><img src="arrow.png" class="back"></a>
</nav>
<header class="header">
<div style="height: 50px"></div>
<h1 class="headerMainTitle">Topic One</h1>
<h4 class="headSubtitle">Whatever the topic voers</h4>
</header>
<div class="surveyBody">
<form>
<table class="survey">
<tr>
<td>
<p style="display: inline">Choose an Answer </p>
</td>
<td>
<input type="radio" name="gender" value="male">Yes
<input type="radio" name="gender" value="female">No
<input type="radio" name="gender" value="other"> N/A
</td>
</tr>
<tr>
<td>
<p style="display: inline">Choose an Answer </p>
</td>
<td>
<input type="radio" name="gender1" value="male"> Yes
<input type="radio" name="gender1" value="female"> No
<input type="radio" name="gender1" value="other"> N/A
</td>
</tr>
<tr>
<td>
<p style="display: inline">Choose an Answer </p>
</td>
<td>
<input type="radio" name="gender2" value="male"> Yes
<input type="radio" name="gender2" value="female"> No
<input type="radio" name="gender2" value="other"> N/A
</td>
</tr>
<tr>
<td>
<p style="display: inline">Choose an Answer </p>
</td>
<td>
<input type="radio" name="gender3" value="male"> Yes
<input type="radio" name="gender3" value="female"> No
<input type="radio" name="gender3" value="other"> N/A
</td>
</tr>
<tr>
<td>
<p style="display: inline">Choose an Answer </p>
</td>
<td>
<input type="radio" name="gender4" value="male"> Yes
<input type="radio" name="gender4" value="female"> No
<input type="radio" name="gender4" value="other"> N/A
</td>
</tr>
<tr>
<td>
<p style="display: inline">Choose an Answer </p>
</td>
<td>
<input type="radio" name="gender5" value="male"> Yes
<input type="radio" name="gender5" value="female"> No
<input type="radio" name="gender5" value="other"> N/A
</td>
</tr>
<tr>
<td>
<p style="display: inline">Choose an Answer </p>
</td>
<td>
<input type="radio" name="gender6" value="male"> Yes
<input type="radio" name="gender6" value="female"> No
<input type="radio" name="gender6" value="other"> N/A
</td>
</tr>
</table>
</form>
</div>
</body>
</html>