-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
37 lines (34 loc) · 934 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Awesome Quiz</title>
<link rel="stylesheet" href="style.css" type="text/css">
<link href='https://fonts.googleapis.com/css?family=Oswald:400,300,700' rel='stylesheet' type='text/css'>
</head>
<body>
<div id="container">
<div>
<p id="question-num">Question 1</p>
<p id="turn-num">Its Player 1's turn</p>
</div>
<div id="question">
<p></p>
</div>
<div class="player-choice">
<div id="choice1"></div>
<div id="choice2"></div>
</div>
<div id="player-scores">
<div id="player-one-score">
Player 1: 0
</div>
<div id="player-two-score">
Player 2: 0
</div>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js" type="text/javascript"></script>
<script src="javascript.js" type="text/javascript"></script>
</body>
</html>