-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
62 lines (62 loc) · 2.03 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
62
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Define character encoding for the document -->
<meta charset="UTF-8">
<!-- Ensure proper rendering and compatibility in Internet Explorer -->
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<!-- Set the viewport to control layout on different devices -->
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Link to external stylesheet -->
<link rel="stylesheet" href="style.css">
<!-- Title of the document -->
<title>Hatch Sticker</title>
</head>
<body>
<!-- Main container for the sticker -->
<div class="container">
<!-- Wrapper for organizing elements -->
<div class="wrapper">
<!-- Ears of the sticker -->
<div class="ears"></div>
<!-- Main body of the sticker -->
<div class="cute">
<!-- Forehead of the sticker -->
<div class="forehead"></div>
<!-- Eyes of the sticker -->
<div class="eyes">
<!-- Left eye -->
<span class="eye">
<span></span>
</span>
<!-- Right eye -->
<span class="eye">
<span></span>
</span>
</div>
<!-- Nose of the sticker -->
<div class="nose"></div>
<!-- Mouth of the sticker -->
<div class="mouth"></div>
</div>
<!-- Front legs of the sticker -->
<div class="front_legs">
<!-- Left leg -->
<span></span>
<!-- Right leg -->
<span></span>
</div>
<!-- Back legs of the sticker -->
<div class="back_legs">
<!-- Div to contain back legs -->
<div class="div">
<!-- Left leg -->
<span></span>
<!-- Right leg -->
<span></span>
</div>
</div>
</div>
</div>
</body>
</html>