-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
88 lines (82 loc) · 2.58 KB
/
index.html
File metadata and controls
88 lines (82 loc) · 2.58 KB
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta
name="description"
content="Discover nature's beauty through our natural landscapes"
/>
<title>Discover Nature</title>
<link
href="https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="assets/styles.css" />
</head>
<body>
<main>
<section class="hero" role="banner">
<!-- Hero Section -->
<div class="hero-content">
<h1>Discover Nature</h1>
<div class="hero-description">
<p>
Embark on a journey to explore the world's most stunning
landscapes. From serene forests to majestic mountains, reconnect
with the beauty of the earth.
</p>
<a
href="#features"
class="cta-button"
role="button"
aria-label="our features"
>Learn More</a
>
</div>
</div>
</section>
<section id="features">
<!-- Features Section -->
<div class="cards-container">
<!-- Cards -->
<article class="card">
<img
src="assets/images/forest.jpg"
alt="Dense forest with tall trees and sunlight filtering through the canopy"
/>
<!-- card description -->
<div class="card-content">
<h3>Explore Forests</h3>
<p>Discover the beauty of lush green forests.</p>
</div>
</article>
<article class="card">
<img
src="assets/images/mountains.jpg"
alt="Majestic mountain peaks covered in snow"
/>
<div class="card-content">
<h3>Climb Mountains</h3>
<p>Conquer breathtaking peaks and trolls.</p>
</div>
</article>
<article class="card">
<img
src="assets/images/waters.jpg"
alt="Serene lake reflecting surrounding mountains"
/>
<div class="card-content">
<h3>Relax by Waters</h3>
<p>Unwind near serene lakes and rivers.</p>
</div>
</article>
</div>
</section>
</main>
<footer>
<p>© 2025 Nature Explorer. All rights reserved.</p>
</footer>
<script src="assets/app.js"></script>
</body>
</html>