-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
258 lines (251 loc) · 7.93 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
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
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>css-project</title>
<link
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH"
crossorigin="anonymous"
/>
<script
src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-YvpcrYf0tY3lHB60NNkmXc5s9fDVZLESaAA55NDzOxhy9GkcIdslK1eN7N6jIeHz"
crossorigin="anonymous"
></script>
<style>
* {
font-family: Arial, Helvetica, sans-serif;
cursor: pointer;
}
.carausol {
margin-top: 5px;
margin-left: 3px;
margin-right: 5px;
border: 2px solid black;
padding: 5px;
}
.carousel-item {
height: 75vh;
}
.card-group {
display: flex;
flex-wrap: wrap;
padding: 5px;
margin: 5px;
}
@media (max-width: 576px) {
.carousel-item {
height: 50%;
}
.card-group {
margin-top: 10px;
}
.carousel-control-prev-icon,
.carousel-control-next-icon {
background-color: rgba(0, 0, 0, 0.5);
}
.buttonab {
display: none;
}
}
</style>
</head>
<body>
<div id="carouselExample" class="carousel slide">
<div class="carousel-inner">
<div class="carousel-item active">
<a
href="https://www.linkedin.com/in/ayush-basak1/"
target="_blank"
rel="noopener noreferrer"
>
<img
src="https://images.pexels.com/photos/417074/pexels-photo-417074.jpeg?auto=compress&cs=tinysrgb&w=600"
class="d-block w-100"
alt="..."
style="object-fit: cover"
/>
</a>
<div class="carousel-caption top-0 mt-4" id="1st-c">
<p class="mt-4 fs-4 fw-bold">World Tour and Cherish every moment</p>
<h1
class="mb-5 fs-8 text-uppercase display-1 fw-bolder"
>
Ayush Travels
</h1>
<a
href="https://www.linkedin.com/in/ayush-basak1/"
target="_blank"
type="button"
class="btn btn-light mb-5 px-4 py-2 fw-bold fs-4"
style="color: darkblue"
>Let's Go</a
>
</div>
</div>
<div class="carousel-item">
<img
src="https://images.pexels.com/photos/416920/pexels-photo-416920.jpeg?auto=compress&cs=tinysrgb&w=600"
class="d-block w-100"
alt="..."
style="object-fit: cover"
/>
<div class="carousel-caption top-0 mt-4">
<p class="mt-4 fs-4 fw-bold" style="color: rgb(255, 219, 176)">
let's catch up on Instagram
</p>
<h1 class="mb-5 fs-8 text-uppercase display-1 fw-bolder">
Ayush Travels
</h1>
<a
href="https://www.instagram.com/unknownn692/profilecard/?igsh=ajI1YmI1NzhicTl0"
target="_blank"
type="button"
class="btn btn-light mb-4 px-4 py-2 fw-bold fs-4 buttonab"
style="color: darkblue"
>Let's Talk!</a
>
</div>
</div>
<div class="carousel-item">
<img
src="https://images.pexels.com/photos/206359/pexels-photo-206359.jpeg?auto=compress&cs=tinysrgb&w=600"
class="d-block w-100"
alt="..."
style="object-fit: cover"
/>
<div class="carousel-caption top-0 mt-4">
<p class="mt-4 fs-4 fw-bold">Let's Go For A thriling Journey</p>
<h1
class="mb-5 fs-8 text-uppercase display-1 fw-bolder"
style="display: flex; justify-self: center; align-self: center"
>
Ayush Travels
</h1>
<a
href="https://www.linkedin.com/in/ayush-basak1/"
target="_blank"
type="button"
class="btn btn-light mb-5 px-4 py-2 fw-bold fs-4"
style="color: darkblue"
>Let's Go</a
>
</div>
</div>
</div>
<button
class="carousel-control-prev"
type="button"
data-bs-target="#carouselExample"
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="#carouselExample"
data-bs-slide="next"
>
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="visually-hidden">Next</span>
</button>
</div>
<div
class="card-group"
style="
margin-top: 10px;
gap: 10px;
"
>
<div
class="card"
style="padding: 5px; border: 2px solid gray; box-shadow: 1px 2px"
>
<img
src="https://images.pexels.com/photos/933054/pexels-photo-933054.jpeg?auto=compress&cs=tinysrgb&w=600"
class="card-img-top"
alt="..."
/>
<div class="card-body">
<h4 class="card-title">Himachal</h4>
<p class="card-text">
Himachal Pradesh is a scenic Himalayan state in northern India,
known for its lush landscapes, temples, trekking, and culture.
</p>
<a
href="https://www.instagram.com/unknownn692/profilecard/?igsh=ajI1YmI1NzhicTl0"
target="_blank"
class="btn btn-primary"
style="padding: 10"
>Click Me to see it on YT</a
>
</div>
</div>
<div
class="card"
style="padding: 5px; border: 2px solid gray; box-shadow: 1px 2px"
>
<img
src="https://images.pexels.com/photos/724712/pexels-photo-724712.jpeg?auto=compress&cs=tinysrgb&w=600"
target="_blank"
class="card-img-top"
alt="..."
/>
<div class="card-body">
<h5 class="card-title">Ire-Land</h5>
<p class="card-text">
Ireland is a beautiful island with lush landscapes, rich history,
vibrant culture, ancient castles, and welcoming people.
</p>
<a
href="https://www.instagram.com/p/C_41PbvyBRp/?igsh=MWQyODhpMTlueGt0aw=="
target="_blank"
class="btn btn-primary"
style="padding: 10"
>Click Me to see it on YT</a
>
</div>
</div>
<div
class="card"
style="padding: 5px; border: 2px solid gray; box-shadow: 1px 2px 3px"
>
<img
src="https://images.pexels.com/photos/268533/pexels-photo-268533.jpeg?auto=compress&cs=tinysrgb&w=600"
class="card-img-top"
alt="..."
/>
<div class="card-body">
<h5 class="card-title">Khasmir</h5>
<p class="card-text">
Kashmir, known for its breathtaking landscapes, snow-capped
mountains, Dal Lake, rich culture, and beautiful gardens, is often
called paradise.
</p>
<a
href="https://www.instagram.com/p/C_40w6cyY-p/?igsh=MWgzNnQxcHRnZ2k2ag=="
target="_blank"
class="btn btn-primary"
style="padding: 10"
>Click Me to see it on YT</a
>
</div>
</div>
</div>
<h1
style="
display: flex;
justify-content: center;
align-items: center;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
"
>
© By Ayush(full stack dev)
</h1>
</body>
</html>