-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathquiz.html
More file actions
80 lines (71 loc) · 2.33 KB
/
quiz.html
File metadata and controls
80 lines (71 loc) · 2.33 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
69
70
71
72
73
74
75
76
77
78
79
80
<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title></title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css">
<link rel="stylesheet" href="bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="style.css">
<script type="text/javascript" src="jquery-1.12.3.min.js"></script>
<script type="text/javascript" src="bootstrap.min.js"></script>
</head>
<body>
<!--Navbar -->
<div class="navbar navbar-default navbar-fixed-top navbar-style">
<div class="container">
<ul class="nav nav-pills pull-right">
<li role="presentation" ><a href="index.html">Home</a></li>
<li role="presentation"><a href="timeline.html">Timeline</a></li>
<li role="presentation"><a href="FAQ.HTML">FAQ</a></li>
<li role="presentation" class="active"><a href="quiz.html">Quiz</a></li>
</ul>
</div>
</div>
<!---Quiz --->
<div class="quiz_page container">
<div class="row">
<div class="col-lg-6 col-lg-offset-3">
<form>
<div class="form-group">
<p class="help-block">Fill out our quiz.</p>
</div>
<div class="form-group">
<label for="exampleInputEmail1">Name</label>
<input type="name" class="form-control" id="exampleInputEmail1" placeholder="name">
</div>
<div class="checkbox">
<p>Check your Feelings:</p>
<label>
<input type="checkbox"> Good
</label>
</div>
<div class="checkbox">
<label>
<input type="checkbox"> Bad
</label>
</div>
<div class="checkbox">
<label>
<input type="checkbox"> Okay
</label>
</div>
<div class="form-group">
<div>
<select class="form-control">
<option>I Feel Right.</option>
<option>I Feel Wrong.</option>
<option>I Support Myself.</option>
<option>I am Good.</option>
<option>I am True.</option>
</select>
</div>
</div>
<button type="submit" class="btn btn-default">Submit</button>
</form>
</div>
</div> <!--row -->
</div>
</body>
</html>