-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
61 lines (61 loc) · 2.28 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Chain Chomp</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="ground"></div>
<div class="post-wrapper">
<div class="post"></div>
<div class="chain">
<div class="chain-ball chain-ball-1"></div>
<div class="chain-ball chain-ball-2"></div>
<div class="chain-ball chain-ball-3"></div>
<div class="chain-ball chain-ball-4"></div>
</div>
</div>
<div class="shadow"></div>
<div class="chain-chomp-wrapper">
<div class="chain-chomp">
<div class="eye left-eye">
<div class="inner-eye"></div>
</div>
<div class="eye right-eye">
<div class="inner-eye"></div>
</div>
<div class="mouth">
<div class="mouth-upper-wrap">
<div class="mouth-upper">
<div class="tooth upper-tooth tooth-u1"></div>
<div class="tooth upper-tooth tooth-u2"></div>
<div class="tooth upper-tooth tooth-u3"></div>
<div class="tooth upper-tooth tooth-u4"></div>
<div class="tooth upper-tooth tooth-u5"></div>
<div class="tooth upper-tooth tooth-u6"></div>
<div class="tooth upper-tooth tooth-u7"></div>
<div class="tooth upper-tooth tooth-u8"></div>
<div class="tooth upper-tooth tooth-u9"></div>
</div>
</div>
<div class="mouth-lower-wrap">
<div class="mouth-lower">
<div class="tooth lower-tooth tooth-l1"></div>
<div class="tooth lower-tooth tooth-l2"></div>
<div class="tooth lower-tooth tooth-l3"></div>
<div class="tooth lower-tooth tooth-l4"></div>
<div class="tooth lower-tooth tooth-l5"></div>
<div class="tooth lower-tooth tooth-l6"></div>
<div class="tooth lower-tooth tooth-l7"></div>
<div class="tooth lower-tooth tooth-l8"></div>
<div class="tooth lower-tooth tooth-l9"></div>
</div>
</div>
</div>
</div>
</div>
</body>
</html>