-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
28 lines (25 loc) · 989 Bytes
/
Copy pathindex.html
File metadata and controls
28 lines (25 loc) · 989 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="stylesheet" type="text/css" href="style.css">
<title>Coffee Clicker</title>
</head>
<body>
<div class="column-container">
<div class="column">
<div class="container left">
<div class="counter-container">C☕ffee: <span id="coffee_counter">0</span> ❥</div>
<div id="big_coffee"><img src="https://www.animatedimages.org/data/media/1099/animated-coffee-image-0001.gif" border="0" alt="animated-coffee-image-0001" /></div>
<div class="cps-container"><span id="cps">0</span> coffee/second</div>
</div>
</div>
<div class="column">
<div class="column-header">❣ 𝕔𝕠𝕗𝕗𝕖𝕖 𝕡𝕣𝕠𝕕𝕦𝕔𝕖𝕣𝕤 ❣</div>
<div class="container right" id="producer_container">
</div>
</div>
<script type="text/javascript" src="data.js"></script>
<script type="text/javascript" src="script.js"></script>
</body>
</html>