-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
22 lines (22 loc) · 706 Bytes
/
index.html
File metadata and controls
22 lines (22 loc) · 706 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!DOCTYPE html>
<html lang="en">`
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="css_connect4/connect4.css" />
<title>Connect 4 Nicky Cage</title>
</head>
<body>
<h1>Connect 4 Nicky Cage</h1>
<h3>Player <span id="current-player"></span>'s turn!</h3>
<h3 id="result"></h3>
<div class="gameBoard"></div>
<h2 id="winner"></h2>
<script defer src="js_connect4/connect4.js" charset="utf-8"></script>
</body>
<footer>
<h3>To reset for Mac: cmd + r</h3>
<h3>To reset for PC: ctrl + r</h3>
</footer>
</html>