-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
24 lines (21 loc) · 850 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
<!DOCTYPE html>
<html>
<head>
<title>Doubloon Clicker!!</title>
<link rel="stylesheet" type="text/css" href="style.css">
<link rel="icon" type="image/png" href="doubloon.png">
</head>
<body>
<h1 id="doubloon"></h1>
<img src="doubloon.png" id="doubloonButton" />
<div id="upgradeButtons">
<button id="upgradeButton1" title="Automatically click 1 time per second">Upgrade LVL 1 (200 doubloons)</button>
<button id="upgradeButton2" title="Automatically click 5 times per second">Upgrade LVL 2 (450
doubloons)</button>
<button id="upgradeButton3" title="Automatically click 10 times per second">Upgrade LVL 3 (800
doubloons)</button>
</div>
<a href="https://highseas.hackclub.com" target="_blank">A high seas project.</a>
</body>
<script src="script.js"></script>
</html>