-
Notifications
You must be signed in to change notification settings - Fork 0
/
quiz.html
115 lines (96 loc) · 3.79 KB
/
quiz.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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="quiz.css" type = "text/css">
<title>Club Compatibility</title>
<div id="logo">
<a href="index.html"><img src="mission-hs.jpg" alt="logo"/></a> </div>
<link rel="icon" href="https://convertico.com/images/1550422905.2444/mission-hs.ico">
<div id="nav">
<ul>
<li><a href="about.html">about</a></li>
<li><a href="quiz.html">take the quiz!</a></li>
<li><a href="clubs.html">clubs</a></li>
</ul>
</div>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Personality Test</title>
<!-- ANIMATE CSS -->
<link rel="stylesheet" type="text/css" href="css/animate.css">
<!-- FONTAWESOME -->
<link rel="stylesheet" type="text/css" href="font-awesome-4.7.0/css/font-awesome.min.css">
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<!-- Optional theme -->
<!-- <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap-theme.min.css" integrity="sha384-rHyoN1iRsVXV4nD0JutlnGaslCJuC7uwjduW9SVrLvRYooPp2bWYgmgJQIXwl/Sp" crossorigin="anonymous"> -->
<!-- GOOGLE FONT -->
<link href="https://fonts.googleapis.com/css?family=Lato" rel="stylesheet">
<!-- CUSTOM -->
<style>
body {
background-color: white;
font-family: aliensandcows;
}
#header {
margin-top: 20px;
margin-left: 0;
margin-right: 0;
border: 2px DarkGreen ;
padding: 5px;
height: 500px;
background: white;
background-image: url("mission.jpg");
background-size: cover ;
color: white;
text-align: center;
display: flex;
align-items: center;
justify-content: center;
font-size: 200px;
text-shadow: 2px 2px #DCDCDC;
font-family: aliensandcows;
}
</style>
</head>
<body>
<div id="header" class"h1">
Your Club Compatibility
</div>
<div class="container text-center">
<h1>Find What's Right For You!</h1>
</div>
<div class="container text-center">
<ul id="quiz" class="list-group">
</ul>
</div>
<div class="container text-center hide results">
<!-- <img src="https://raw.githubusercontent.com/danubevictoria/quiz/master/images/results1.jpg" class="results col-md-4 col-sm-4 col-xs-4">
<img src="https://raw.githubusercontent.com/danubevictoria/quiz/master/images/results2.jpg" class="results col-md-4 col-sm-4 col-xs-4">
<img src="https://raw.githubusercontent.com/danubevictoria/quiz/master/images/results3.jpg" class="results col-md-4 col-sm-4 col-xs-4"> -->
</div>
<!-- <div class="container progress">
<div id="intro-bar" class="progress-bar" style="width: 15%" role="progressbar" aria-valuenow="15" aria-valuemin="0" aria-valuemax="100">
15%
</div>
<div id="extro-bar" class="progress-bar bg-success" role="progressbar" aria-valuenow="30" aria-valuemin="0" aria-valuemax="100">
30%
</div>
</div> -->
<div class="container text-center results hide">
<p id="results"></p>
</div>
<div class="container text-center bottom">
<button id="submit-btn" class="btn btn-primary btn-lg">Submit</button>
<button id="retake-btn" class="hide btn btn-primary btn-lg">Retake Quiz</button>
</div>
<!-- SCRIPTS -->
<!-- JQUERY -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.0/jquery.min.js"></script>
<!-- BOOTSTRAP -->
<!-- Latest compiled and minified JavaScript -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa" crossorigin="anonymous"></script>
<!-- CUSTOM -->
<script type="text/javascript" src="quiz.js"></script>
</body>
</html>