-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
75 lines (69 loc) · 3.09 KB
/
index.html
File metadata and controls
75 lines (69 loc) · 3.09 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Trivia Game</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css"
integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="assets/css/style.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
</head>
<body>
<header id="pageHeader" class="mb-4">
<h1 class="display-3 text-center bg-dark text-muted">Sentenced</h1>
</header>
<div id="container" class="container">
<!-- ROW 1-->
<div class="row">
<div class="col col-sm-1">
</div>
<div class="col col-md-8 text-left">
<section id="question" class="jumbotron text-center">
<div id="divQuestion">
<p id="questionText"></p>
</div>
</section>
<ul id="answers" class="p-0 text-center"></ul>
</div>
<div class="col col-md-3">
<div id="answer-card" class="card text-center text-light">
<div class="card-header text-uppercase">
</div>
<div class="card-body">
<img id="imgBook">
<h3 id="timer" class="text-monospace"></h3>
</div>
<div class="card-footer bg-dark font-weight-bold">
</div>
</div>
</div>
</div>
</div>
<footer id="pageFooter" class="fixed-bottom bg-dark text-center text-muted">
<ul>
<li class="list-inline-item">
<h4 class="display-5 mt-2">JAVASCRIPT • </h4>
</li>
<li class="list-inline-item">
<h4 class="display-5 mt-2">JQUERY • </h4>
</li>
<li class="list-inline-item">
<h4 class="display-5 mt-2">HTML/CSS • </h4>
</li>
<li class="list-inline-item">
<h4 class="display-5 mt-2">BOOTSTRAP</h4>
</li>
</ul>
<a href="https://vtchris.github.io/portfolio/" target="_blank"
class="btn btn-secondary mb-3 mr-4"><span class="fa fa-address-card pr-2"></span>Portfolio: Chris Ross</a>
<a href="https://github.com/vtchris/" target="_blank" class="fa fa-github text-muted mr-4"
style="font-size:38px;"></a>
<a href="https://www.linkedin.com/in/chris-ross-71a95711/" target="_blank"
class="fa fa-linkedin-square text-muted" style="font-size:38px;"></a>
<footer>
<script src="assets\javascript\app.js"></script>
</body>
</html>