-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
57 lines (51 loc) · 1.49 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script src="https://code.jquery.com/jquery-3.6.0.min.js" integrity="sha256-/xUj+3OJU5yExlq6GSYGSHk7tPXikynS7ogEvDej/m4=" crossorigin="anonymous"></script>
<script src="app.js" defer></script>
<link rel="stylesheet" href="styles.css">
<title>Document</title>
</head>
<body>
<div id="modal-intro">
<div id=modal-intro-textbox>
<h1>Welcome to Trivia Night</h1>
<p>This is a 2-player, turn-taking game for you to compete with a friend to decide who knows more about <br><span>science</span><br>
There is no time limit. The first to 10 points or whoever has the most points at the end of the questions wins!
</p>
<p id="close">I'm game</p>
</div>
</div>
<h1 id="title">TRIVIA: Science Edition</h1>
<div class="container">
<div id="question">
Are you game?
</div>
<div id="answer">
<ul>
<li id="a">Answer A</li>
<li id="b">Answer B</li>
<li id="c">Answer C</li>
<li id="d">Answer D</li>
</ul>
</div>
<div id="scores">
<div id="player1">
<h3>Player 1</h3>
<h4>Score: 0</h4>
</div>
<div id="player2">
<h3>Player 2</h3>
<h4>Score: 0</h4>
</div>
</div>
</div>
<div id="modal">
<div id="modal-textbox">
</div>
</div>
</body>
</html>