-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathconnect4.html
More file actions
46 lines (42 loc) · 1.82 KB
/
Copy pathconnect4.html
File metadata and controls
46 lines (42 loc) · 1.82 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
46
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="stylesheet" href="all.css">
<link rel="stylesheet" href="connect4.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Connect Four</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>Connect Four</h1>
<div class="board" id="board"></div>
<button class="button" onclick="resetGame()">Reset Game</button>
<div class="overlay" id="C4overlay" onclick="closePopup()"></div>
<div class="container" id="C4popupBox">
<img class="popup-tetriscat" style="rotate: 0deg; height: 150px; width: auto; left: 285px; top: -148px;" src="assets/tetrisCat3.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="connect4.js"></script>
</body>
</html>