Version - 1 - 1-38
This commit is contained in:
64
Version - 20/shop.html
Normal file
64
Version - 20/shop.html
Normal file
@@ -0,0 +1,64 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<title>Shop</title>
|
||||
<link rel="stylesheet" href="style.css">
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
||||
<div>
|
||||
<a href="index.html">Go to the B.R.B.!</a>
|
||||
</div>
|
||||
|
||||
|
||||
<!-- clicks logging -->
|
||||
<div id="clicks">
|
||||
<p id="logclicks"></p>
|
||||
</div>
|
||||
|
||||
<!-- item sections -->
|
||||
|
||||
<!-- dogs -->
|
||||
<div id="dog">
|
||||
<p id="logdogs"></p>
|
||||
<button id="buydog" onclick="buy.dog()">
|
||||
Buy a dog for 100 clicks!
|
||||
</button>
|
||||
</div>
|
||||
|
||||
<!-- cats -->
|
||||
<div id="cat">
|
||||
<p id="logcats"></p>
|
||||
<button id="buycat" onclick="buy.cat()">
|
||||
Buy a cat for 10 dogs!
|
||||
</button>
|
||||
</div>
|
||||
|
||||
<!-- lemons -->
|
||||
<div id="lemon">
|
||||
<p id="loglemons"></p>
|
||||
<button id="buylemon" onclick="buy.lemon()">
|
||||
Buy a lemon for ? cats!
|
||||
</button>
|
||||
</div>
|
||||
|
||||
<!-- foxes -->
|
||||
<div id="fox">
|
||||
<p id="logfoxes"></p>
|
||||
<button id="buyfox" onclick="buy.fox()">
|
||||
Buy a fox for 15 dogs!
|
||||
</button>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script src="main.js"></script>
|
||||
</body>
|
||||
|
||||
</html>
|
||||
Reference in New Issue
Block a user