-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
34 lines (32 loc) · 991 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
<!doctype html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Connect 4</title>
<link href="connect4.css" rel="stylesheet">
</head>
<body>
<div class="top-bar">
<h1>Play Connect-4</h1>
<h2 id=player-turn></h2>
<p id="turn-count">Turns: </p>
<div class="dropdown">
<span><u>How To Play/Start New Game</u> (Hover/Click Here)</span>
<div class="dropdown-content">
<ul id="dd-text">
<li>Click One Of The Dotted Circles To Place Piece In That Column</li>
<li>To Start A New Game, Click New Game Button Below or Click Arrow At The Bottom Of The Board</li>
</ul>
<div id="options">
<button type="button" id="replay">New Game</button>
</div>
</div>
</div>
</div>
<div id="game">
<table id="board"></table>
<div class="side-div"><img src="Images/arrow.png" id="restart-arrow">
</div>
</div>
<script src="connect4.js"></script>
</body>
</html>