-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
33 lines (33 loc) · 1017 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>Do You Know The NBA?</title>
<link href="style.css" rel="stylesheet" type="text/css" />
</head>
<body>
<main role= "main" class= "container">
<header role="banner" class="header">
<h1 class="title">Do You Know The NBA?</h1>
<section>
<ul>
<li class="questTrack">Question:<span class="questionNumber">0</span>/10
</li>
<li class="pointTrack">Score:<span class="score">0</span>
</li>
</ul>
</section>
</header>
<section class="yesSpace">
<button type="button" class="startButton">Yes!!</button>
</section>
<section class="questionBox box altBox">
</section>
<section class="response box altBox"></section>
<section class="final box altBox"></section>
</section>
</main>
<script src="script.js"></script>
</body>
</html>