-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
52 lines (52 loc) · 1.66 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>My Totem</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 20px;
}
.container {
display: flex;
flex-direction: row;
align-items: flex-start; /* Aligns items to the left */
}
.part {
margin-bottom: 20px; /* Space between each part */
text-align: center; /* Align text to the left */
}
img {
width: 100px; /* Adjust the width of the SVG images */
height: auto; /* Keep the aspect ratio */
}
</style>
</head>
<body>
<h1>My Totem</h1>
<div class="container">
<div class="part">
<h5>Color</h5>
<img src="totem-parts/colors.png" alt="Color illustration"
onerror="this.onerror=null; this.src='default.png';">
</div>
<div class="part">
<h5>Animal</h5>
<img src="totem-parts/animal.png" alt="Animal illustration"
onerror="this.onerror=null; this.src='default.png';">
</div>
<div class="part">
<h5>Hand Sign</h5>
<img src="totem-parts/handsign.png" alt="Hand sign illustration"
onerror="this.onerror=null; this.src='default.png';">
</div>
<div class="part">
<h5>Weather</h5>
<img src="totem-parts/weather.png" alt="Weather illustration"
onerror="this.onerror=null; this.src='default.png';">
</div>
</div>
</body>
</html>