-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
56 lines (52 loc) · 1.66 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Trivia Game</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css">
<script src="http://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
<script src="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js"></script>
<link rel="stylesheet" href="assets/css/style.css">
<script type="text/javascript" src="assets/javascript/app.js" async></script>
</head>
<body>
<div class="container">
<section class="panel panel-success page-header text-center">
<header class="panel-heading">
<h1 class="text-center">Trivia Game <small>Challenge ....</small></h1>
</header>
<article class="panel-body trivia">
<h2 class="time blink text-center">Time Remaining: 5</h2>
<table class="table table-hover">
<thead id="question">
<!-- <tr>
<th>ok</th>
</tr> -->
</thead>
<tbody id="options">
<!-- <tr>
<td>Option 1</td>
</tr>
<tr>
<td>Option 2</td>
</tr>
<tr>
<td>Option 3</td>
</tr> -->
</tbody>
</table>
</article>
<br>
<button type="button" class="btn btn-success btn-large start">Trivia Game </button>
</section>
<footer class="footer text-center">
<!-- <iframe src="http://giphy.com/embed/l0K4gl3QvnIjoy0Tu" width="480" height="270" frameBorder="0" class="giphy-embed" allowFullScreen></iframe>
<video width="320" height="240" src="assets/images/IndependenceDay.mp4">
Your browser does not support the video tag.
</video>
-->
</footer>
</div>
</body>
</html>