-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcheckers.html
More file actions
45 lines (41 loc) · 1.79 KB
/
Copy pathcheckers.html
File metadata and controls
45 lines (41 loc) · 1.79 KB
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>
<meta charset="UTF-8">
<link rel="stylesheet" href="all.css">
<link rel="stylesheet" href="checkers.css">
<title>Checkers Promotion and Capture Tutorial</title>
</head>
<body>
<div class="header">
<div class="header-left"><a href="index.html"><img style="height: auto; width: 35px" src="assets/tetrisCatIcon.png"/></a></div>
<div class="header-center">
<a href="index.html">Home</a>
<a href="help.html">Help</a>
<a href="store.html">Store</a>
</div>
<div class="header-right">
<a href="signup.html" class="signup-btn">Sign up</a>
<a href="login.html" class="login-btn" id="login-btn">Login</a>
<span id="username-display" style="display: none;"></span>
</div>
</div>
<div class="scroll-container">
<div class="scroll-progress-bar" id="scrollBar"></div>
</div>
<h1>Checkers Promotion and Capture Tutorial</h1>
<div class="board" id="board"></div>
<button class="button" onclick="resetBoard()">Reset Board</button>
<div class="overlay" id="CHoverlay" onclick="closePopup()"></div>
<div class="container" id="CHpopupBox">
<img class="popup-tetriscat" style="height: 150px; width: auto; left: 385px; top: -120px;" src="assets/tetrisCat1.GIF" alt=""/>
<div class="contact-box">
<div class="sos-box">SOS!!</div>
<button class="close-btn" onclick="closePopup()">×</button>
<p id="popup-text"></p>
</div>
</div>
<script src="script.js"></script>
<script src="checkers.js"></script>
</body>
</html>