-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgame.html
39 lines (39 loc) · 1023 Bytes
/
game.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="css/styles.css" media="screen" title="no title">
<script src="js/jquery-3.1.1.js"></script>
<script src="js/scripts.js"></script>
<title></title>
</head>
<body>
<nav>
<p id="logo">
<a href="index.html">
TheGallery
</a>
</p>
<ul>
<!-- <li><a href="index.html" id="logo">TheGallery</a></li> -->
<li><a href="#">About</a></li>
<li><a href="#">Contact</a></li>
<li><a href="#">Search</a></li>
<li><a href="#">Your Gallery</a></li>
<li><a href="game-menu.html">Game</a></li>
</ul>
</nav>
<div id="picbox">
<span id="boxbuttons">
<span class="button">
<span id="counter">0</span>
Clicks
</span>
<span class="button">
<a onclick="ResetGame();">Reset</a>
</span>
</span>
<div id="boxcard"></div>
</div>
</body>
</html>