-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
32 lines (32 loc) · 848 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Connect 4</title>
<link
href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;500&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<div class="wrapper">
<div id="playerTurn">Demo Text</div>
<div class="container"></div>
<div id="information">
<div class="player-wrappers">
Player 1
<div class="player1"></div>
</div>
<div class="player-wrappers">
Player 2
<div class="player2"></div>
</div>
</div>
</div>
<div class="startScreen">
<div id="message"></div>
<button id="start">Start Game</button>
</div>
<script src="script.js"></script>
</body>
</html>