-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
35 lines (35 loc) · 1.1 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
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="./src/style.css" />
</head>
<body class="banana-body">
<h1 class="banana-header">
<p>Banana Clicker</p>
<p>Banana's collected : <span id="counting">0</span></p>
</h1>
<Button class="banana-button">
<img src="./Images/delicious-banana.png" id="bananaButton">
</Button>
<p style="font-style: italic" id="bananaQuote"> "mmm mmm mmm so good" </p>
<span>
<button class="button-normal" id="eatBanana">
Eat a banana (wasteful)
</button>
<button class="button-normal" id="upgradeClick">
Upgrade clicking!
</button>
<button class="button-normal" id="addFarmer">
Add a Farmer!
</button>
<button class="button-normal" id="quoteChange">
Change the quote!
</button>
<button class="button-normal" id="changeImage">
Change the image!
</button>
</span>
<p>Costs : <span id="price"> 0 </span> banana(s)</p>
<script src="./src/script.js"></script>
</body>
</html>