forked from Technigo/project-news-site
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
96 lines (88 loc) · 3.29 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
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
89
90
91
92
93
94
95
96
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Au revoir travel news</title>
<link rel="stylesheet" href="./style.css" />
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
<header class="header">
<div class="title">
Au revoir
</div>
<nav class="nav">
<ul>
<li><a href="http://google.com/" aria-label="Latest news section">News</a></li>
<li><a href="http://google.com/" aria-label="Travel section with destination guides">Travel</a></li>
<li><a href="http://google.com/" aria-label="About our company">About</a></li>
<li><a href="http://google.com/" aria-label="Contact us page">Contact</a></li>
</ul>
</nav>
<div class="hamburger">
☰
</div>
</header>
<div class="big-card">
<img class="card-image big" src="img/airballon.png" alt="A hot air balloon floating over a scenic landscape">
<div class="text-content big">
<h3 class="article-h3">Hot Air Ballooning</h3>
<p>
Hot air ballooning offers a unique way to experience the landscape from above. Floating silently over fields,
forests, or cities, it provides breathtaking views and a sense of serenity. The gentle ascent and panoramic
vistas make it a popular activity for both thrill-seekers and those looking for a peaceful escape.
</p>
<ul>
<li><a href="http://google.com/" class="button" aria-label="Read more about Hot Air Ballooning">Read more</a>
</li>
</ul>
</div>
</div>
<main>
<div class="card">
<img class="card-image" src="img/alps.png" alt="Scenic view of hiking trails in the Alps mountains">
<div class="text-content">
<h3>Alpine Hiking Trails</h3>
<p>Explore new hiking paths.</p>
<ul>
<li><a href="http://google.com/" class="button" aria-label="Read more about Alpine Hiking Trails">Read
more</a></li>
</ul>
</div>
</div>
<div class="card">
<img class="card-image" src="img/kopenhamn.png" alt="Floating gardens in the canals of Copenhagen">
<div class="text-content">
<h3>Floating Gardens</h3>
<p>New green spaces on city canals.</p>
<ul>
<li><a href="http://google.com/" class="button"
aria-label="Read more about Floating Gardens in Copenhagen">Read more</a></li>
</ul>
</div>
</div>
<div class="card">
<img class="card-image" src="img/ski-trip.png" alt="A skier on fresh snow in Chamonix">
<div class="text-content">
<h3>Chamonix Ski Season</h3>
<p>Fresh snow and perfect conditions.</p>
<ul>
<li><a href="http://google.com/" class="button" aria-label="Read more about Chamonix Ski Season">Read more</a>
</li>
</ul>
</div>
</div>
<div class="card">
<img class="card-image" src="img/rome.png" alt="Rome's architectural mix of ancient and modern buildings">
<div class="text-content">
<h3>Rome's Architectural</h3>
<p>A mix of ancient and modern design.</p>
<ul>
<li><a href="http://google.com/" class="button" aria-label="Read more about Rome's Architectural design">Read
more</a></li>
</ul>
</div>
</div>
</main>
</body>
</html>