-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
38 lines (31 loc) · 845 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
38
<!doctype html>
<head>
<title>Connect 4</title>
<link rel="stylesheet" href="connect4.css" >
<link href="https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap" rel="stylesheet">
</head>
<body>
<div id="flex-box">
<div id="title">
<p>Connect 4</p>
</div>
<div id="start-menu">
<p>
<button id="againstFriend" onClick="game.handleClickStart(false);"> Play against Human</button>
<button id="againstCPU" onClick="game.handleClickStart(true);"> Play against Leiah</button>
</p>
<img src="pose.png" width="400">
</div>
</div>
<p>
<img src="really.png" id="really">
<img src="whatThe.png" id="whatThe">
</p>
<div id="game">
<table id="board"></table>
</div>
<!-- <script src="connect4.js"></script> -->
<script src="connect4-oo.js"></script>
<script src="ai-bot.js"></script>
</body>
</html>