-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
96 lines (85 loc) · 4.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
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">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="author" content="Nehrú André">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="shortcut icon" href="img/logo.svg" type="image/x-icon">
<link rel="stylesheet" href="css/header.css">
<link rel="stylesheet" href="css/main-content.css">
<link rel="stylesheet" href="css/footer.css">
<title> Adventure</title>
</head>
<body>
<div class="header-container">
<header>
<nav class="nav-bar">
<p class="logo"><a href="index.html" title="Home page"> Adventure </a></p>
<button type="button" class="btn"><img src="img/menu-btn.png" alt=""></button>
<ul id="menu">
<li><a href="#events"> Events </a></li>
<li><a href="#explore"> Explore </a></li>
<li><a href="#tours" class="tour"> Upcoming tour </a></li>
</ul>
</nav>
</header>
<div>
<h1 class="main-title"> Explore the colorful world </h1>
<span class="line"></span>
<h2 class="subtitle"> A wonderful gift </h2>
<a href="#" class="learn-more" id="link" onclick="event.preventDefault()">Learn more</a>
</div>
</div>
<div class="errorMessage" id="errorBlock">
<p>Sorry, this link is not available!</p>
<button type="button" id="errorBtn">X</button>
</div>
<section class="events-section" id="events">
<h2> Upcoming Events</h2>
<div class="events-container">
<div class="image-container">
<figure>
<img src="img/img1.png" alt="">
<figcaption> Everest Camp Trek </figcaption>
</figure>
<p>Our next event will be a hike on Mount Everest. Buy your ticket and secure your spot on one of the most fun and educational hikes ever.</p>
<a href="#" class="learn-more" id="link" onclick="event.preventDefault()"> Buy tickets </a>
</div>
<div class="image-container">
<figure>
<img src="img/img2.png" alt="">
<figcaption> Walking Holidays </figcaption>
</figure>
<p>Have you ever thought about spending your vacation at a campsite, enjoying the sunshine and spending time away from technology? Buy your ticket and secure your spot at our next campsite</p>
<a href="#" class="learn-more" id="link" onclick="event.preventDefault()"> Buy tickets </a>
</div>
</div>
</section>
<section class="explore-section" id="explore">
<div class="explore-content">
<h2 class="subtitle"> Explore the world</h2>
<span class="line"></span>
<p>Go out to explore and discover new things, don't just sit there. The world is beautiful and full of opportunities waiting for your kick-off. Don't think twice, just feel and live!</p>
<a href="#" class="learn-more" id="link" onclick="event.preventDefault()">Learn more</a>
</div>
</section>
<section class="upcoming-section" id="tours">
<div class="content">
<h2>Upcoming tour & destination </h2>
<p>Our team is always organizing events, register on our website to always receive news by email.</p>
<a href="#" class="learn-more" id="link" onclick="event.preventDefault()"> Register </a>
</div>
<div class="images">
<img src="img/img3.png" alt="">
<img src="img/img4.png" alt="">
<img src="img/img5.png" alt="">
<img src="img/img6.png" alt="">
</div>
</section>
<footer>
<p>© copiright 2022 - <a href="https://www.linkedin.com/in/nehr%C3%BA-andr%C3%A9-12b428231/" target="_blank"title="Go to Nehrú André linkedin">Nehrú André</a></p>
</footer>
<script src="js/script.js"></script>
</body>
</html>