-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
executable file
·46 lines (43 loc) · 1.64 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Connect Four</title>
<meta name="description" content="">
<meta name="author" content="Kevin Albertson">
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link href='https://fonts.googleapis.com/css?family=Open+Sans:400,700' rel='stylesheet' type='text/css'>
<link href="style.css" rel="stylesheet" type="text/css" />
<style>
</style>
</head>
<body>
<div id="container">
<h1>Connect Four</h1>
<div id="board" class="unlocked">
<div class="col"><div class="arrow"></div><div class="pieces"></div></div>
<div class="col"><div class="arrow"></div></div>
<div class="col"><div class="arrow"></div></div>
<div class="col"><div class="arrow"></div></div>
<div class="col"><div class="arrow"></div></div>
<div class="col"><div class="arrow"></div></div>
<div class="col"><div class="arrow"></div></div>
</div>
<p id="winner"></p>
<footer>
<p>The <a href="https://kevinalbs.com/connect4/back-end/info.html" target="_blank">Connect Four AI</a> is offered as a free and open API</p>
<p><a href="https://github.com/kevinAlbs/connect4" target="_blank">The source is on GitHub</a></p>
<p>Developed by <a href="https://kevinalbs.com" target="_blank">Kevin Albertson</a></p>
<p>Last updated: 2024-07-06</p>
</footer>
</div>
<script src="js/jquery.js"></script>
<script src="js/jquery-ui-1.10.4.custom.min.js">/* only has core + bounce + effect */</script>
<script src="js/main.js?v2"></script>
<script>
GAME.init({
GAME_TYPE : "AI"
});
</script>
</body>
</html>