-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsheep.html
47 lines (47 loc) · 1.27 KB
/
sheep.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
<!DOCTYPE html>
<html>
<head>
<meta charset='utf-8'>
<meta http-equiv='X-UA-Compatible' content='IE=edge'>
<title>CSS Arts</title>
<meta name='viewport' content='width=device-width, initial-scale=1'>
<link rel='stylesheet' type='text/css' media='screen' href='./CSS/sheep.css'>
<script src='main.js'></script>
</head>
<body>
<ul>
<li>
<a href="/index.html">Goku</a>
</li>
<li>
<a href="/sheep.html">Sheep</a>
</li>
<li>
<a href="/ninja.html">Ninja</a>
</li>
<li>
<a href="/ilove.html">I ❤ CSS</a>
</li>
</ul>
<div class="scene">
<div class="text">DO NOT TOUCH</div>
<div class="sheep">
<span class="top">
<div class="body"></div>
<div class="head">
<div class="eye one"></div>
<div class="eye two"></div>
<div class="ear one"></div>
<div class="ear two"></div>
</div>
</span>
<div class="legs">
<div class="leg"></div>
<div class="leg"></div>
<div class="leg"></div>
<div class="leg"></div>
</div>
</div>
</div>
</body>
</html>