-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
151 lines (126 loc) · 6.65 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!--========== BOX ICONS ==========-->
<link rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/boxicons@latest/css/boxicons.min.css">
<!--========== SWIPER CSS ==========-->
<link rel="stylesheet" href="css/swiper.css">
<!--========== CSS ==========-->
<link rel="stylesheet" href="css/style.css">
<title>Responsive Island Resort Website</title>
</head>
<body>
<!--========== HEADER ==========-->
<header class="header">
<nav class="nav bd-container">
<a href="#" class="nav__logo">Eutopia</a>
<div class="nav__menu" id="nav-menu">
<ul class="nav__list">
<li class="nav__item"><a href="#" class="nav__link">Home</a></li>
<li class="nav__item"><a href="#" class="nav__link">Explore</a></li>
<li class="nav__item"><a href="#" class="nav__link">Destinations</a></li>
<li class="nav__item"><a href="#" class="nav__link">Hotels</a></li>
</ul>
</div>
<div class="nav__toggle" id="nav-toggle">
<i class='bx bx-menu'></i>
</div>
</nav>
</header>
<!--========== MAIN ==========-->
<main class='main'>
<!--Slider main container-->
<div class="swiper-container gallery-top">
<!--Additional required wrapper-->
<div class="swiper-wrapper">
<!--========== ISLANDS 1 ==========-->
<section class="islands swiper-slide">
<img src="img/borabora.jpg" alt="" class="islands__bg">
<div class="islands__container bd-container">
<div class="islands__data">
<h2 class="islands__subtitle">Islands</h2>
<h1 class="islands__title">Malindi</h1>
<p class="islands__description">
Malindi is one of the beautiful coastal towns in Kenya,
steeped in rich heritage with several cultural and historic places to discover
</p>
<a href="#" class="islands__button">Explore <i class='bx bx-right-arrow-alt islands__buttons-icon'></i></a>
</div>
<div class="islands__video">
<div class="islands__video-content">
<i class='bx bx-play-circle islands__video-icon'></i>
</div>
</div>
</div>
</section>
<!--========== ISLANDS 2 ==========-->
<section class="islands swiper-slide">
<img src="img/bali.jpg" alt="" class="islands__bg">
<div class="islands__container bd-container">
<div class="islands__data">
<h2 class="islands__subtitle">Islands</h2>
<h1 class="islands__title">Mombasa</h1>
<p class="islands__description">
Mombasa is one of the beautiful coastal towns in Kenya,
steeped in rich heritage with several cultural and historic places to discover
</p>
<a href="#" class="islands__button">Explore <i class='bx bx-right-arrow-alt islands__buttons-icon'></i></a>
</div>
<div class="islands__video">
<div class="islands__video-content">
<i class='bx bx-play-circle islands__video-icon'></i>
</div>
</div>
</div>
</section>
<!--========== ISLANDS 3 ==========-->
<section class="islands swiper-slide">
<img src="img/palawan.jpg" alt="" class="islands__bg">
<div class="islands__container bd-container">
<div class="islands__data">
<h2 class="islands__subtitle">Islands</h2>
<h1 class="islands__title">Lamu</h1>
<p class="islands__description">
Lamu is one of the beautiful coastal towns in Kenya,
steeped in rich heritage with several cultural and historic places to discover
</p>
<a href="#" class="islands__button">Explore <i class='bx bx-right-arrow-alt islands__buttons-icon'></i></a>
</div>
<div class="islands__video">
<div class="islands__video-content">
<i class='bx bx-play-circle islands__video-icon'></i>
</div>
</div>
</div>
</section>
<!--========== ISLANDS POPUP ==========-->
<div class="islands__popup" id="popup">
<div>
<div class="islands__popup-close" id="popup-close">
<i class='bx bx-x'></i>
</div>
<iframe class="islands__popup-video" src="https://www.youtube.com/embed/tDkyN-TnXJI?si=mweiJJsyumNfiuKM" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
</div>
</div>
</div>
</div>
<!--========== CONTROLS ==========-->
<div class="controls gallery-thumbs">
<div class="controls__container swiper-wrapper">
<img src="img/borabora.jpg" alt="" class="controls__img swiper-slide">
<img src="img/bali.jpg" alt="" class="controls__img swiper-slide">
<img src="img/palawan.jpg" alt="" class="controls__img swiper-slide">
</div>
</div>
</main>
<!--========== GSAP ==========-->
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.11.0/gsap.min.js"></script>
<!--========== SWIPER JS ==========-->
<script src="js/swiper.js"></script>
<!--========== SCRIPT JS ==========-->
<script src="js/script.js"></script>
</body>
</html>