-
Notifications
You must be signed in to change notification settings - Fork 0
/
game.html
36 lines (32 loc) · 1.63 KB
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Generic clicker game!</title>
<link rel="stylesheet" href="./style.css">
<script src="./script.js" defer></script>
<script src="./game.js" defer></script>
<link rel="icon" href="./cursor.png" type="image/x-icon">
</head>
<body>
<header id="GameHeader">
<div id="GameHeaderLeft"><a href="./"><img id="topLogo" src="cursor.png" alt="Logo"></a> <h2 id="topText">Generic clicker game</h2></div>
<div id="GameHeaderRight"><button class="basicDisplay"><a target="_blank" href="https://github.com/sj2245/First_website"
id="BeginGame">Home</a></button>
<button class="basicDisplay"><a target="_blank" href="https://github.com/sj2245/First_website" id="BeginGame">Head to the Github! </a></button></div>
</header>
<main>
<button id="pointDisplay" class="basicDisplay centeredElement">Current Points: <div class="points">0</div></button>
<button id="pointClickDisplay"class="basicDisplay centeredElement">Points gained per click:1</button>
<div id="midSection">
<button id="theOGButton" class="circleButton centeredElement">Click me for points!</button>
</div>
<button id="UpgCursor" class="basicButton centeredElement">Upgrade cursor! Cost:10 Points</button>
<button id="UpgIdle" class="basicButton centeredElement">Unlock idle point gain! Cost:<div class="idleGain">10</div> Points</button>
</main>
<footer id="gamefooter">
<button class="basicButton"id="returnButt"><a href="./" id="BeginGame">Return to Home page! </a></button>
</footer>
</body>
</html>