-
Notifications
You must be signed in to change notification settings - Fork 0
/
slide.php
43 lines (39 loc) · 1.54 KB
/
slide.php
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
<!DOCTYPE html>
<html>
<head>
<title>Responive Carousel Slider</title>
<link rel="stylesheet" type="text/css" href="cssfile/slide.css">
<link href="https://fonts.googleapis.com/css2?family=Montserrat&family=Roboto+Slab:wght@300&display=swap" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/flickity/2.2.1/flickity.css">
</head>
<body>
<div class="hero-slider" data-carousel>
<div class="carousel-cell" style="background-image: url(image/1.jpg);">
<div class="overlay"></div>
<div class="inner">
<h3 class="subtitle">Choose your Bus</h3>
<h2 class="title">Enjoy your tour with our best facility...</h2>
<a href="home.php" class="btn">Go to Home</a>
</div>
</div>
<div class="carousel-cell" style="background-image: url(image/2.jpg);">
<div class="overlay"></div>
<div class="inner">
<h3 class="subtitle">Ticket Booking</h3>
<h2 class="title">Booking your Ticket Fastly via Online...</h2>
<a href="home.php" class="btn">Go to Home</a>
</div>
</div>
<div class="carousel-cell" style="background-image: url(image/3.jpg);">
<div class="overlay"></div>
<div class="inner">
<h3 class="subtitle">Ac</h3>
<h2 class="title">Ac Non Ac facility on your preference...</h2>
<a href="home.php" class="btn">Go to Home</a>
</div>
</div>
</div>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/flickity/2.2.1/flickity.pkgd.min.js"></script>
<script type="text/javascript" src="js/script.js"></script>
</body>
</html>