-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
45 lines (28 loc) · 891 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
39
40
41
42
43
44
45
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/animate.css">
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.0/jquery.min.js"></script>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.9/jquery-ui.min.js"></script>
<title></title>
</head>
<body>
<div class="wrapper">
<h1>Connect Four</h1>
<div class="board cf">
<div class="win" style="display: none">You Win
</div>
</div>
<div class="board-legs">
</div>
<div class="coin-slot">
<div id="coin-blue" class="coin blue"></div>
<div id="coin-yellow" class="coin yellow"></div>
</div>
</div>
<script src="js/app.js"></script>
<script src="js/view.js"></script>
<script src="js/animate.js"></script>
</body>
</html>