-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathsample_questionnaire.html
More file actions
40 lines (38 loc) · 1.45 KB
/
sample_questionnaire.html
File metadata and controls
40 lines (38 loc) · 1.45 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
<table style="margin-left: auto; margin-right: auto;">
<tr>
<td>
<label for="q1">Select answer for Q1:</label>
<select name="q1" id="q1" required>
<option value="q1a1">Answer1</option>
<option value="q1a2">Answer2</option>
<option value="q1a3">Answer3</option>
</select>
</td>
</tr>
<tr>
<td>
<label for="q2">Type an answer for Q2</label>
<input type="text" name="q2" id="q2" placeholder="Write something" value="" required/>
</td>
</tr>
<tr>
<td>
<p>Please make a choice for Q3:</p>
<input type="radio" id="ch1" name="q3" value="Choice 1" required>
<label for="ch1">Choice 1</label><br>
<input type="radio" id="ch2" name="q3" value="Choice 2" required>
<label for="ch2">Choice 2</label><br>
</td>
</tr>
<tr>
<td>
<p>Check all that apply for Q4</p>
<input type="checkbox" id="q4Movies" name="q4Movies" value="Movie">
<label for="q4Movies">I like movies</label><br>
<input type="checkbox" id="q4Cars" name="q4Cars" value="Car">
<label for="q4Cars">I like cars</label><br>
<input type="checkbox" id="q4Cats" name="q4Cats" value="Cat">
<label for="q4Cats">I like cats</label><br>
</td>
</tr>
</table>