-
Notifications
You must be signed in to change notification settings - Fork 0
/
thailand.html
180 lines (180 loc) · 5.82 KB
/
thailand.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
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Mali</title>
<link
href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css"
rel="stylesheet"
/>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/js/bootstrap.bundle.min.js"></script>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css"
/>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script>
$(document).ready(function () {
let days = [
{
day: 1,
itinerary:
"Arrival at Bangkok International Airport. Transfer to the hotel. Leisure time.",
},
{
day: 2,
itinerary:
"Explore the vibrant street markets and iconic temples in Bangkok.",
},
{
day: 3,
itinerary:
"Day trip to Ayutthaya to explore the ancient ruins and historical sites.",
},
{
day: 4,
itinerary:
"Enjoy a scenic boat tour along the Chao Phraya River and visit the Grand Palace.",
},
{
day: 5,
itinerary:
"Departure from Bangkok. Transfer to the airport for your return journey.",
},
];
days.forEach((day, index) => {
$(".card-section").append(
` <div key=${index} class="card custom-background shadow text-dark">
<div class="card-body">
<h5 class="card-title af">Day ${day.day}</h5>
<p class="card-text">
${day.itinerary}
</p>
</div>
</div>`
);
});
$("#carouselExampleControls").on("slide.bs.carousel", function (event) {
var imageUrl = $(event.relatedTarget).find("img").attr("src");
$(".container-fluid").css({
"background-image": 'url("' + imageUrl + '")',
transition: "background-image 0.5s ease-in-out",
});
});
});
</script>
<link rel="stylesheet" href="./styles/index.css" />
<link rel="stylesheet" href="./styles/trips.css" />
<link rel="stylesheet" href="./styles/home.css" />
<style>
li {
list-style-type: square !important;
}
</style>
</head>
<body>
<div
class="container-fluid text-dark position-relative"
style="
background-image: url('./images/thailand-1.jpg');
background-repeat: no-repeat;
background-size: cover;
background-position: center;
height: 100vh;
"
>
<div
class="position-absolute top-0 start-0 w-100 h-100"
style="opacity: 0.6; backdrop-filter: blur(3px)"
></div>
<div class="row">
<div class="col-md-6">
<div
id="carouselExampleControls"
class="carousel slide carousel-fixed"
data-bs-ride="carousel"
>
<div class="carousel-indicators">
<button
type="button"
data-bs-target="#carouselExampleIndicators"
data-bs-slide-to="0"
class="active"
aria-current="true"
aria-label="Slide 1"
></button>
<button
type="button"
data-bs-target="#carouselExampleIndicators"
data-bs-slide-to="1"
aria-label="Slide 2"
></button>
</div>
<div class="carousel-inner">
<div class="carousel-item active">
<img
src="./images/thailand-1.jpg"
class="img-fluid"
alt="Thailand Image 1"
/>
</div>
<div class="carousel-item">
<img
src="./images/thailand-2.jpg"
class="img-fluid"
alt="Thailand Image 2"
/>
</div>
</div>
<button
class="carousel-control-prev"
type="button"
data-bs-target="#carouselExampleControls"
data-bs-slide="prev"
>
<span
class="carousel-control-prev-icon"
aria-hidden="true"
></span>
<span class="visually-hidden">Previous</span>
</button>
<button
class="carousel-control-next"
type="button"
data-bs-target="#carouselExampleControls"
data-bs-slide="next"
>
<span
class="carousel-control-next-icon"
aria-hidden="true"
></span>
<span class="visually-hidden">Next</span>
</button>
</div>
</div>
<div style="z-index: 999" class="col-md-6 content-section">
<h2 class="cbc" style="font-size: 4rem">
Thailand Destination Package
</h2>
<p>
Discover the vibrant culture and historical wonders of Thailand with
our exclusive package. Explore bustling markets, ancient temples,
and scenic rivers.
</p>
<ul>
<li>5 days and 4 nights</li>
<li>Stay at luxurious hotels</li>
<li>Guided tours to historical sites</li>
<li>$3000/per person</li>
</ul>
<h2 class="af fs-1">Trip Itineraries</h2>
<div
class="card-section"
style="display: flex; gap: 10px; flex-direction: column"
></div>
</div>
</div>
</div>
</body>
</html>