-
Notifications
You must be signed in to change notification settings - Fork 7
/
index.html
40 lines (36 loc) · 2.04 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Front End Quiz</title>
<meta name="viewport" content="width=device-width">
<meta name="description" content="Front End Engineer trivia quiz challenge. Questions about HTML, CSS and JavaScript." />
<link rel="stylesheet" href="css/style.css" type="text/css" media="screen">
<!--[if IE]>
<script src="http://coderesponsible.com/wp-content/themes/cr-2013/js/html5.js"></script>
<![endif]-->
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-35062160-1']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
</head>
<body>
<header>
<h1>Front End Quiz</h1>
<div id="timer" class="timer"></div>
<p><span id="current-number">0</span> of <span id="total-questions"></span> questions</p>
<a href="https://github.com/ryanburgess/front-end-quiz"><img style="position: absolute; top: 0; right: 0; border: 0;" src="https://camo.githubusercontent.com/38ef81f8aca64bb9a64448d0d70f1308ef5341ab/68747470733a2f2f73332e616d617a6f6e6177732e636f6d2f6769746875622f726962626f6e732f666f726b6d655f72696768745f6461726b626c75655f3132313632312e706e67" alt="Fork me on GitHub" data-canonical-src="https://s3.amazonaws.com/github/ribbons/forkme_right_darkblue_121621.png"></a>
</header>
<div id="content">
<a href="#" id="start" class="start">Start</a>
<h2 id="question" class="question"></h2>
<ul id="answers" class="answers"></ul>
</div>
<script src="js/build/quiz-min.js" type="text/javascript"></script>
</body>
</html>