-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.htm
58 lines (56 loc) · 2.34 KB
/
index.htm
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
47
48
49
50
51
52
53
54
55
56
57
58
<!DOCTYPE HTML>
<html>
<head>
<title>Waffle's Amazing Connect 4</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<p id="result">Red's Turn</p>
<div id="1" class="dot"></div>
<div id="2" class="dot"></div>
<div id="3" class="dot"></div>
<div id="4" class="dot"></div>
<div id="5" class="dot"></div>
<div id="6" class="dot"></div>
<div id="7" class="dot"></div>
<div id="8" class="dot"></div>
<div id="9" class="dot"></div>
<div id="10" class="dot"></div>
<div id="11" class="dot"></div>
<div id="12" class="dot"></div>
<div id="13" class="dot"></div>
<div id="14" class="dot"></div>
<div id="15" class="dot"></div>
<div id="16" class="dot"></div>
<div id="17" class="dot"></div>
<div id="18" class="dot"></div>
<div id="19" class="dot"></div>
<div id="20" class="dot"></div>
<div id="21" class="dot"></div>
<div id="22" class="dot"></div>
<div id="23" class="dot"></div>
<div id="24" class="dot"></div>
<div id="25" class="dot"></div>
<div id="26" class="dot"></div>
<div id="27" class="dot"></div>
<div id="28" class="dot"></div>
<div id="29" class="dot"></div>
<div id="30" class="dot"></div>
<div id="31" class="dot"></div>
<div id="32" class="dot"></div>
<div id="33" class="dot"></div>
<div id="34" class="dot"></div>
<div id="35" class="dot"></div>
<div id="36" class="dot"></div>
<div id="37" class="dot"></div>
<div id="38" class="dot"></div>
<div id="39" class="dot"></div>
<div id="40" class="dot"></div>
<div id="41" class="dot"></div>
<div id="42" class="dot"></div>
<button id="reset">Reset</button>
<button style="position: absolute; left: 0; bottom: 0; margin-left: 20px; margin-bottom: 20px; background-color: #333; border: 2px solid #fff; color: white; padding: 10px 20px; text-align: center; text-decoration: none; display: inline-block; font-size: 15px; cursor: pointer;" onclick="window.location.href = 'https://waffledevsalt.github.io'">Main Page</button>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.4.1/jquery.min.js" integrity="sha512-bnIvzh6FU75ZKxp0GXLH9bewza/OIw6dLVh9ICg0gogclmYGguQJWl8U30WpbsGTqbIiAwxTsbe76DErLq5EDQ==" crossorigin="anonymous" referrerpolicy="no-referrer"></script>
<script src="code.js"></script>
</body>
</html>