-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
72 lines (68 loc) · 2.6 KB
/
index.html
File metadata and controls
72 lines (68 loc) · 2.6 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/css/materialize.min.css" integrity="sha512-UJfAaOlIRtdR+0P6C3KUoTDAxVTuy3lnSXLyLKlHYJlcSU8Juge/mjeaxDNMlw9LgeIotgz5FP8eUQPhX1q10A==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="stylesheet" href="./styles.css">
<style>
.carousel-item {
position: relative;
}
.carousel-item img {
width: 100%;
height: auto;
}
.carousel-item p {
position: absolute;
bottom: 0;
left: 0;
right: 0;
text-align: center;
background-color: rgba(0, 0, 0, 0.4);
color: white;
padding: 5px 0;
border-radius: 5px;
}
</style>
</head>
<body>
<div class="heading">
<h1>
Pick Your Trail - See Gujarat - As Per Your Interests
</h1>
</div>
<div class="carousel">
<a href="" target="_blank" class="carousel-item" class="carousel-item">
<img src="./assets/1.png">
<p>MUSEUM</p>
</a>
<a href="" class="carousel-item">
<img src="./assets/2.png">
<p>HERITAGE</p>
</a>
<a href="" target="_blank" class="carousel-item">
<img src="./assets/3.png">
<p>FOREST</p>
</a>
<a href="" target="_blank" class="carousel-item">
<img src="./assets/4.png">
<P>BEACH</P>
</a>
<a href="" target="_blank" class="carousel-item">
<img src="./assets/5.png">
<P>TEMPLE</P>
</a>
</div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.7.1/jquery.min.js" integrity="sha512-v2CJ7UaYy4JwqLDIrZUI/4hqeoQieOmAZNXBeQyjo21dadnwR+8ZaIJVT8EE2iyI61OV8e6M8PP2/4hpQINQ/g==" crossorigin="anonymous" referrerpolicy="no-referrer"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/js/materialize.min.js" integrity="sha512-NiWqa2rceHnN3Z5j6mSAvbwwg3tiwVNxiAQaaSMSXnRRDh5C2mk/+sKQRw8qjV1vN4nf8iK2a0b048PnHbyx+Q==" crossorigin="anonymous" referrerpolicy="no-referrer"></script>
<script type="text/javascript">
$(document).ready(function(){
$('.carousel').carousel({
indicators: true
});
});
</script>
</body>
</html>