-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
99 lines (74 loc) · 2.88 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta charset="utf-8">
<meta name="author" content="Ronny Tomasetti">
<meta name="description" content="Trivia Game">
<meta name="keywords" content="trivia">
<title>Trivia Game</title>
<link rel="stylesheet" type="text/css" href="assets/css/reset.css">
<link rel="stylesheet" type="text/css" href="assets/css/style.css">
<link rel="stylesheet" type="text/css" href="assets/css/TimeCircles.css">
<link rel="icon" href="assets/img/favicon.ico">
</head>
<body>
<div class="container-full-bg">
<div class="wrapper">
<header>
<img class="logo" src="assets/img/logo_star_wars.png">
</header>
<div id="game-board" class="clearfix">
<img class="hero-img" src="assets/img/cool2.png">
<!-- trivia question with multiple choices -->
<div id="trivia-cards" class="clearfix">
<!-- cloned question and answer templates go here -->
</div> <!-- END trivia-card -->
<!-- question timer -->
<div id="timer" class="circle-timer"></div>
</div> <!-- END game-board -->
<!-- start button -->
<!-- <button class="start-button">Start</button> -->
<p class="glow-neon text-center">START TRIVIA</p>
</div> <!-- END wrapper -->
<footer class="text-center">
<p>UCF Coding Bootcamp 0616VW Trivia Game by Ronny Tomasetti</p>
</footer>
</div> <!-- END container-full-bg -->
<!-- trivia card questions template -->
<script id="question-template" type="text/custom-template">
<div>
<h1 id="question" class="text-center"></h1>
<h2 id="0" class="choices text-center"></h2>
<h2 id="1" class="choices text-center"></h2>
<h2 id="2" class="choices text-center"></h2>
<h2 id="3" class="choices text-center"></h2>
</div>
</script>
<!-- trivia card answers template -->
<script id="answers-template" type="text/custom-template">
<div>
<h1 id="result" class="text-center"></h1>
<img src="">
<h2 id="correct-answer" class="text-center"></h2>
</div>
</script>
<!-- trivia card results template -->
<script id="results-template" type="text/custom-template">
<div>
<h1 id="correct" class="results"></h1>
<h1 id="incorrect" class="results"></h1>
<h1 id="unanswered" class="results"></h1>
</div>
</script>
<!-- jQuery Library -->
<script src="https://code.jquery.com/jquery-3.1.0.min.js"
integrity="sha256-cCueBR6CsyA4/9szpPfrX3s49M9vUU5BgtiJj06wt/s=" crossorigin="anonymous"></script>
<!-- jQuery TimeCircles developed by Wim Barelds -->
<!-- Check it out at http://git.wimbarelds.nl/TimeCircles/index.html -->
<script type="text/javascript" src="assets/js/TimeCircles.js"></script>
<!-- Trivia Game Object -->
<script src="assets/js/TriviaGame.js"></script>
<!-- Logic -->
<script src="assets/js/logic.js"></script>
</body>
</html>