-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
50 lines (47 loc) · 1.58 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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="styles.css">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<!-- HERO SECTION -->
<div id="hero">
<h1 id="hero-title">Visit Hateno Village</h1>
<h2 id="hero-subtitle">Discover the charm of this serene haven in eastern Hyrule, home to world-famous food and fashion.</h2>
</div>
<!-- ACTIVITIES SECTION -->
<div id="activities">
<h3>Top three activities in Hateno Village</h3>
<div id="activities-list">
<div class="activities-item">
<img src="images/hateno-pasture.png">
<h4>Escape to lush meadows in the countryside</h4>
<p>Hateno Pasture is the source for Hyrule's best milk and cheese.</p>
</div>
<div class="activities-item">
<img src="images/kochi-dye-shop.png">
<h4>Find inspiration in the latest fashion trends</h4>
<p>Kochi Dye Shop is a one-of-a-kind destination for bespoke and tailor-made clothing.</p>
</div>
<div class="activities-item">
<img src="images/tech-lab.png">
<h4>Explore ancient secrets and lost technologies</h4>
<p>Hateno Ancient Tech Lab is the center for learning hidden Sheikah knowledge.
</div>
</div>
</div>
<!-- GUIDE SECTION -->
<div id="guide">
<div id="card">
<img id="avatar" src="images/link.jpg">
<div id="card-info">
<h3>Your guide</h3>
<p>"I have lived in Hateno for hundreds of years, so I can show you all of its best parts and hidden secrets."</p>
<h4>Link</h4>
</div>
</div>
</div>
</body>
</html>