-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
42 lines (42 loc) · 1.46 KB
/
index.html
File metadata and controls
42 lines (42 loc) · 1.46 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Web Animation API</title>
<link rel="stylesheet" href="index.css">
<script src = 'index.js'></script>
</head>
<body>
<div class="wrapper">
<!-- SKY PORTION HTML -->
<div class="sky">
<img src = './images/sun moon.gif' class = 'sun-moon'>
<div class="cloud-group-1">
<img src = './images/cloud-1.png' class = 'cloud-1'>
<img src = './images/cloud-2.png' class = 'cloud-2'>
<img src = './images/cloud-1.png' class = 'cloud-3'>
</div>
<div class="cloud-group-2">
<img src = './images/cloud-2.png' class = 'cloud-1'>
<img src = './images/cloud-1.png' class = 'cloud-2'>
<img src = './images/cloud-2.png' class = 'cloud-3'>
</div>
</div>
<!-- ROAD PORTION HTML -->
<div class="road">
<div id = whiteTop></div>
<div id = 'yellow-divider'>
<div id="yellow1"></div>
<div id="yellow2"></div>
<div id="yellow3"></div>
<div id="yellow4"></div>
<div id="yellow5"></div>
<div id="yellow6"></div>
<div id="yellow7"></div>
</div>
<img src="./images//car.png" alt="" id = 'car'>
<div id = whiteBottom></div>
</div>
</div>
</body>
</html>