-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
39 lines (33 loc) · 995 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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Cookie Clicker</title>
<link rel="stylesheet" href="./assets/css/styles.css" />
<link rel="icon" href="./assets/favicons/favicon.ico" />
</head>
<body>
<main id="game">
<section id="bakery">
<h2>Bakery</h2>
<div id="cookies">
<div id="cookiesStock"><span>?</span> cookies</div>
<div id="cookiesPerSecond">cookies per second: <span>?</span></div>
</div>
<div id="bigCookie"></div>
</section>
<div class="separator"></div>
<section id="production">
<h2>Production lines</h2>
<hr />
</section>
<div class="separator"></div>
<section id="store">
<h2>Store</h2>
<div id="buildings"></div>
</section>
</main>
<script type="module" src="./js/main.mjs"></script>
</body>
</html>