-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
47 lines (47 loc) · 2.31 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0"/>
<title>Autism Spectrum Disorder Quiz</title>
<link rel="stylesheet" href="css/main.css" type="text/css"/>
<script src="js/jquery-1.11.1.js"></script>
<script src="https://cloud.github.com/downloads/wycats/handlebars.js/handlebars-1.0.rc.1.min.js"></script>
<script src="js/app.js"></script>
</head>
<body>
<div id="quizBody">
<br />
<div class="intro">
<h1>How much do you know about Autism?</h1><br /><br />
<p>There are lots of misconceptions out there about Autism Spectrum Disorder.<br /><br /> Do you know fact from fiction? Let's find out!</p><br /><br />
<button id="startBtn">Start the Quiz!</button>
</div>
<div class="question">
<h1>Question <span class="qNum"></span> of 5</h1><br /><br/>
<div id="quizQuestion"></div><br/>
<ul class="qOptions">
<script id="answers-template" type="x-handlebars-template">
{{#each options}}
<li><span>{{this.choice}}</span></li>
{{/each}}
</script>
</ul><br/>
</div>
<div class="answer">
<h1 class="result"></h1><br/><br/>
<div class="answerInfo"></div>
<button id="nextBtn">Next Question</button><br/>
<div class="answerTrack">You got <span class="answerCount">0</span>/5 correct!</div>
</div>
<div class="end">
<h1>That's it!</h1><br/>
<h3 class="report"></h3><br/>
Thanks for taking my quiz! I created it to spread more awareness about Autism in an effort to reduce stigma. If you are interested in more information about Autism Spectrum Disorder, you can start your research <a href="http://www.nimh.nih.gov/health/topics/autism-spectrum-disorders-asd/index.shtml" target="_blank">here</a>.<br/><br/>
If you want to help, <a href="https://salsa4.salsalabs.com/o/50944/donate_page/donate" target="_blank">donate to the Autistic Self Advocacy Network</a>!<br/><br/>
<button id="restartBtn">Try again!</button> <br/><br/>
<small>Statistics came from the <a href="http://www.cdc.gov/ncbddd/autism/data.html" target="_blank">CDC</a>.</small>
</div>
</div>
</body>
</html>