-
Notifications
You must be signed in to change notification settings - Fork 7
/
index.html
48 lines (40 loc) · 1.95 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
<!DOCTYPE html>
<html>
<head>
<meta content="text/html; charset=utf-8" http-equiv="content-type">
<title>CSS Quiz for Girl Develop It</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>
<div id="slickQuiz" role="main">
<h1 class="quizName"><!-- where the quiz name goes --></h1>
<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">
<h3 class="quizScore">You Scored: <span><!-- where the quiz score goes --></span></h3>
<h3 class="quizLevel"><strong>Your Result:</strong> <span><!-- where the quiz ranking level goes --></span></h3>
<div class="quizResultsCopy">
<!-- where the quiz result copy goes -->
</div>
</div>
</div>
<footer>
<nav>
<a href="http://girldevelopit.com/chapters/philadelphia" title="Girl Develop It Philadelphia">Girl Develop It Philly</a>
<a href="http://www.meetup.com/Girl-Develop-It-Philadelphia/events/103820282/" title="Intro to Sass Signup">Sign up for Intro to Sass</a>
<a href="mailto:[email protected]" title="Contact Us">Contact Us</a>
</nav>
</footer>
<script src="js/jquery-1.7.min.js"></script>
<script src="js/slickQuiz-config.js"></script>
<script src="js/slickQuiz.js"></script>
<script src="js/master.js"></script>
</body>
</html>