forked from ironhack-labs/lab-html-exercise
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
38 lines (35 loc) · 1.04 KB
/
Copy pathindex.html
File metadata and controls
38 lines (35 loc) · 1.04 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Jumping Dog</title>
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<main class="scene" aria-label="A small animated dog jumping in a park">
<div class="sun"></div>
<div class="cloud cloud-one"></div>
<div class="cloud cloud-two"></div>
<section class="stage">
<h1>Jump, little dog!</h1>
<div class="dog" aria-hidden="true">
<div class="tail"></div>
<div class="body">
<div class="spot"></div>
</div>
<div class="head">
<div class="ear"></div>
<div class="eye"></div>
<div class="snout">
<div class="nose"></div>
</div>
</div>
<div class="leg leg-front"></div>
<div class="leg leg-back"></div>
</div>
<div class="shadow"></div>
</section>
</main>
</body>
</html>