-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·51 lines (48 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
<!DOCTYPE HTML>
<html ng-app="myQuiz">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Test Your Knowledge: Saturn</title>
<link rel="stylesheet" type="text/css" href="css/quiz.css">
</head>
<body>
<div id="myQuiz" ng-controller="QuizController">
<h1>Test your Knowledge:<span>Saturn</span></h1>
<div class="progress">
<div class="answered correct"></div>
<div class="on"></div>
<div></div>
</div>
<div class="intro">
<h2>Welcome</h2>
<p>Click begin to test your knowledge of Saturn.</p>
<p class="btn">Begin</p>
</div>
<div class="question unanswered">
<p class="txt">This is a question</p>
<p class="ans">Answer 1</p>
<p class="ans">Answer 2</p>
<p class="ans">Answer 3</p>
<p class="ans">Answer 4</p>
<div class="feedback">
<p>You are <strong>correct</strong>.</p>
<p>Oops! that is not correct.</p>
<p>Aditional feedback.</p>
<p class="btn">Continue</p>
</div>
</div>
<div class="results">
<h3>Results</h3>
<p>You scored X% by correctly answering X of the total X questions.</p>
<p>Use the links below to challenge your friends.</p>
<div class="share">
<a href="#" class="btn email">Email</a>
<a href="#" class="btn twitter">Tweet</a>
</div>
</div>
</div>
<script type="text/javascript" src="js/angular.min.js"></script>
<script type="text/javascript" src="js/quiz.js"></script>
</body>
</html>