-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
57 lines (48 loc) · 1.7 KB
/
index.html
File metadata and controls
57 lines (48 loc) · 1.7 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/main.css">
<link href="https://fonts.googleapis.com/css?family=Bowlby+One+SC|Raleway+Dots&display=swap" rel="stylesheet">
<script defer src="js/main.js"></script>
<title>Connect Four</title>
</head>
<body>
<header class="col-1">
<h1>Connect 4</h1>
<section id="options">
<button id="new-board">New Board</button>
<select id="theme-select">
<option value="" disabled selected>Select Theme</option>
<option>Default</option>
<option>Dark</option>
<option>Sherbert</option>
</select>
</section>
</header>
<section class="game-info">
<section class="scores col-3" id="player1">
<div class="player-name" id="player1-name">Player 1</div>
<div class="player-score" id="pos"></div>
</section>
<div id="winner"></div>
<section class="scores col-4" id="player2">
<div class="player-name" id="player2-name">Player 2</div>
<div class="player-score" id="pts"></div>
</section>
</section>
<div id="col-2">
<div id="player-choice">
<div class="0 hole"></div>
<div class="1 hole"></div>
<div class="2 hole"></div>
<div class="3 hole"></div>
<div class="4 hole"></div>
<div class="5 hole"></div>
<div class="6 hole"></div>
</div>
<section id="board"></section>
</div>
</body>
</html>