-
Notifications
You must be signed in to change notification settings - Fork 73
/
conditionals.html
45 lines (44 loc) · 1.31 KB
/
conditionals.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
40
41
42
43
44
45
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>Conditionals</title>
<link rel="stylesheet" href="conditionals.css" />
<script defer src="conditionals.js"></script>
</head>
<body>
<div class="navbar">
<a href="index.html">Do Now</a>
<a href="variables.html">Variables</a>
<a href="conditionals.html">Conditionals</a>
</div>
<br>
<br>
<h1>Cookie Clicker Game</h1>
<h3>Total Cookies: <span id="total-cookies">0</span></h3>
<div>
<h5>Cookie (free to click)</h5>
<img
id="cookie"
src="https://purepng.com/public/uploads/large/purepng.com-cookiescookiessnacksbaked-snackflour-cookies-1411527249240cpmp9.png"
/>
</div>
<div>
<h5>Oven: costs 50 cookies</h5>
<img
id="oven"
src="https://media.giphy.com/media/7oasXWyB9VHb2/giphy.gif"
/>
<h3>Total Ovens: <span id="total-ovens">0</span></h3>
</div>
<div>
<h5>Factory: locked (homework)</h5>
<img
id="factory"
src="https://cdn.dribbble.com/users/920643/screenshots/3363160/pwc_factory_loop_800x600.gif"
/>
</div>
</body>
</html>