-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
52 lines (41 loc) · 1.52 KB
/
index.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
<!DOCTYPE html>
<html>
<head>
<meta content="text/html; charset=utf-8" http-equiv="content-type">
<title>SlickQuiz Demo</title>
<link href="css/reset.css" media="screen" rel="stylesheet" type="text/css">
<link href="css/slickQuiz.css" media="screen" rel="stylesheet" type="text/css">
<link href="css/master.css" media="screen" rel="stylesheet" type="text/css">
</head>
<body id="slickQuiz">
<div class="quizArea">
<div class="quizHeader">
<!-- where the quiz main copy goes -->
<a class="button startQuiz" href="#">Get Started!</a>
</div>
<!-- where the quiz gets built -->
</div>
<div class="quizResults">
<div id="resultsHeader">
<h3>YOU GOT:</h3>
</div>
<!--<h3 class="quizScore">You Scored: <span><!-- where the quiz score goes </span></h3>-->
<!---<h3 class="quizLevel"><strong>Ranking:</strong> <span><!-- where the quiz ranking level goes </span></h3>-->
<div id="resultsBody">
<div id="resultDesc">
<div id="descLong">
</div>
</div>
<div id="resultPicture">
</div>
</div>
<!--<div class="quizResultsCopy">
<!-- where the quiz result copy goes
</div>-->
</div>
<script src="js/jquery.js"></script>
<script src="js/slickQuiz-config.js"></script>
<script src="js/slickQuiz.js"></script>
<script src="js/master.js"></script>
</body>
</html>