-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
57 lines (55 loc) · 1.97 KB
/
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
46
47
48
49
50
51
52
53
54
55
56
57
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="styles.css" />
<title>Document</title>
</head>
<body>
<div class="container">
<!-- col start-->
<div class="board"></div>
<!-- col end -->
<aside>
<div class="info">
<h3>Player</h3>
<div class="info-player">
<div class="underlay border">
<img
class="playerIcon playerIcon1 on"
src="./images/poppy.png"
alt="one"
/>
</div>
<div class="underlay">
<img
class="playerIcon playerIcon2"
src="./images/sunflower-1.png"
alt="two"
/>
</div>
</div>
<div class="info-msg"></div>
</div>
<div class="options">
<div class="space">
<button>Go to Space</button>
</div>
<div class="reset">
<button>New Game</button>
</div>
<div class="buildBoard">
<button>Board Size</button>
</div>
</div>
</aside>
</div>
<div id="overlay" class="overlay">
<div class="congrats">🏆</div>
</div>
<script src="https://code.jquery.com/jquery-3.5.1.min.js"></script>
<script src="main.js"></script>
</body>
</html>