forked from hannahemills/css-kitten-wheelbarrow-vfa-2017
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
40 lines (31 loc) · 1.01 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>CSS Kitten Wheelbarrow</title>
<link rel="stylesheet" href="css/wheelbarrow.css">
<link rel="stylesheet" href="css/place-kitty.css">
</head>
<body>
<div class="wrapper">
<!-- Wheelbarrow -->
<div id="wheelbarrow"></div>
<div id="wheelbarrow-foreground"></div>
<!-- Kitties -->
<img src="images/kitty-5.png" alt="Kitty 5">
<img class="kitty-1" src="images/kitty-1.png" alt="Kitty 1">
<img id="kitty-2" src="images/kitty-2.png" alt="Kitty 2">
<div id="basket">
<img src="images/kitty-3.png" alt="kitty 3">
</div>
<div id="ball"></div>
<img src="images/kitty-4.png" alt="kitty 4">
</div><!-- .wrapper -->
<audio id="player1">
<source src="audio/purrr.mp3" type="audio/mp3">
<source src="audio/purrr.ogg" type="audio/ogg">
</audio>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
<script src="js/purr-click.js"></script>
</body>
</html>