"Carousel effect with form + ravi"
Bootstrap 4.1.1 Snippet by ravi7284007

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
<link href="//maxcdn.bootstrapcdn.com/bootstrap/4.1.1/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css">
<script src="//maxcdn.bootstrapcdn.com/bootstrap/4.1.1/js/bootstrap.min.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<!------ Include the above in your HEAD tag ---------->
<!--Fonts/Icons CSS-->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<link href="https://fonts.googleapis.com/css?family=Montserrat:300,400,500,600,700,800,900&display=swap" rel="stylesheet">
<link rel="stylesheet" href="fonts/stylesheet.css">
<div id="main-carousel" class="carousel slide" data-ride="carousel">
<div class="carousel-inner">
<div class="carousel-item active">
<img src="https://picsum.photos/1600/501" class="d-block w-100" alt="...">
<div class="carousel-caption d-none d-md-block">
<h5>It is a long established </h5>
<h2> fact that a reader distracted</h2>
<a href="#0" class="btn btn-info">MORE INFO</a>
</div>
</div>
<div class="carousel-item">
<img src="https://picsum.photos/1600/502" class="d-block w-100" alt="...">
<div class="carousel-caption d-none d-md-block">
<h5>It is a long established </h5>
<h2> fact that a reader distracted</h2>
<a href="#0" class="btn btn-info">MORE INFO</a>
</div>
</div>
</div>
<a class="carousel-control-prev" href="#main-carousel" role="button" data-slide="prev">
<i class="fa fa-angle-left" aria-hidden="true"></i>
<span class="sr-only">Previous</span>
</a>
<a class="carousel-control-next" href="#main-carousel" role="button" data-slide="next">
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
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
html {
font-size: 62.5%;
}
body {
font-family: "Montserrat", sans-serif;
}
button:focus {
outline: none;
-webkit-box-shadow: none;
box-shadow: none;
}
a,
a:hover {
text-decoration: none;
display: inline-block;
-webkit-transition: 0.3s ease-in-out;
transition: 0.3s ease-in-out;
}
img {
display: inline-block;
max-width: 100%;
}
@media (min-width: 1200px) {
.container {
max-width: 1300px;
}
}
#main-carousel {
margin-top: 20px;
text-shadow: 1px 2px 3px #0000001f;
}
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Related: See More


Questions / Comments: