64 lines
1.1 KiB
HTML
64 lines
1.1 KiB
HTML
<!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> |