-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathindex.html
52 lines (39 loc) · 1.52 KB
/
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
40
41
42
43
44
45
46
47
48
49
50
51
<!DOCTYPE html>
<!--all of our html will be contained within this-->
<html>
<!--this is how we load our javascript file and css file upon loading the webpage-->
<head>
<script type="text/javascript" src="cookie.js"></script>
<!--Insert title here-->
<link rel = "stylesheet" href = "style.css"/>
<link rel="icon" type="image/png" href="imgs/cookie.png" sizes="32x32">
</head>
<!--this is how we add all of the elements to the webpage-->
<body>
<!--this is where our logo will be contained within-->
<div id="logo">
<!-- insert image and link it to UB ACM -->
</a>
</div>
<!--this is where the cookie game elements will be contained within-->
<div id="cookie-game">
<!--this is our header-->
<div id="header">UB ACM's Cookie Clicker!</div>
<!--this is our cookie and js clicker function-->
<!-- Add onclick function here -->
<div id="cookie" >
<img src="imgs/cookie.png" width="200px">
</div>
<!--this is our cookie count-->
<p>Number of Cookies</p>
<div id="numbers"></div>
<!--this is our level display-->
<p>Level</p>
<div id= "upgradeLevel"></div>
<!--this is our instructions section-->
<div id="instructions">
<!-- Add instructions text here -->
</div>
</div>
</body>
</html>