-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
62 lines (57 loc) · 1.77 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
58
59
60
61
62
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<link rel="stylesheet" type="text/css" href="css/reset.css"/>
<link rel="stylesheet" type="text/css" href="css/variables.css"/>
<link rel="stylesheet" type="text/css" href="css/style.css">
<title>Basketball Counter</title>
</head>
<body>
<div class="scoreboard">
<div id="scoreboard_home">
<h2>HOME</h2>
<p id="home_score">0</p>
<div id="home_counter">
<p id="home_add1">+1</p>
<p id="home_add2">+2</p>
<p id="home_add3">+3</p>
</div>
</div>
<div id="scoreboard_middle">
<div id="scoreboard_timer_top">
<p id="scoreboard_timer">0:00</p>
<div id="scoreboard_period">
<p id="scoreboard_period_title">Period</p>
<p id="scoreboard_period_score">0</p>
</div>
</div>
<div id="scoreboard_bottom">
<div id="scoreboard_fouls">
<div id="scoreboard_foul_left">
<p id="scoreboard_foul_left_title">Foul</p>
<p id="scoreboard_foul_left_score">0</p>
</div>
<div id="scoreboard_foul_right">
<p id="scoreboard_foul_right_title">Foul</p>
<p id="scoreboard_foul_right_score">0</p>
</div>
</div>
<button id="scoreboard_reset">Reset Board</button>
<p id="scoreboard_game_guide">CLICK HERE to learn the game mechanics</p>
</div>
</div>
<div id="scoreboard_guest">
<h2>Guest</h2>
<p id="guest_score">0</p>
<div id="guest_counter">
<p id="guest_add1">+1</p>
<p id="guest_add2">+2</p>
<p id="guest_add3">+3</p>
</div>
</div>
</div>
<script src="js/project.js"></script>
</body>
</html>