-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
36 lines (36 loc) · 998 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
<!DOCTYPE html>
<html>
<header>
<meta charset="UTF-8">
<title>Cat Clicker</title>
</header>
<style>
#catDiv img {
display: list-item;
}
body {
background: url("images/2007VAIO_SS06.min.jpg");
}
</style>
<body>
<div id="catPic" align="middle">
<img id="cat_one" alt="Click on cat picture to enter cat">
<h1 id="cat1Name"></h1>
<p id="catCount"></p>
<img id="cat_two" alt="Click on cat picture again to enter second cat">
<h1 id="cat2Name"></h1>
<p id="catCount2"></p>
<button id=clearCat>Clear Cats</button>
</div>
<div id="catDiv" align="middle">
<img id="first" src="" alt="cat">
<img id="second" src="" alt="cat2">
<img id="third" src="" alt="cat3">
<img id="fourth" src="" alt="cat4">
<img id="fifth" src="" alt="cat5">
</div>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="cats.js"></script>
<script src="app.min.js" async></script>
</body>
</html>