-
Notifications
You must be signed in to change notification settings - Fork 0
/
trial.html
129 lines (109 loc) · 4.43 KB
/
trial.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Bootstrap Example</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css">
<link href="trial.css" rel="stylesheet" type="text/css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.16.0/umd/popper.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>
<style>
/* Make the image fully responsive */
.carousel-inner img {
width: 100%;
height: 100%;
}
</style>
</head>
<body>
<nav class="navbar navbar-expand-lg navbar-light bg-light">
<a class="navbar-brand" href="#">Navbar</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<form class="form-inline my-2 my-lg-0" id="form">
<input class="form-control mr-sm-2" type="search" placeholder="Search" aria-label="Search" id="search">
<!-- <button class="btn btn-outline-success my-2 my-sm-0" type="submit">Search</button>-->
</form>
</div>
</nav>
<!--
<header>
<div class="container"></div>
<div class="logo">
<a href="">Logo</a>
</div>
<form >
<input type="text" placeholder="Search" id="search" class="search">
</form>
</header>
-->
<div class="slider">
<style>
/* Make the image fully responsive */
.carousel-inner img {
width: 100%;
height: 100%;
}
</style>
<div class=" ">
<!--<h2>Carousel</h2>-->
<div id="myCarousel" class="carousel slide" data-ride="carousel">
<!-- Indicators -->
<ul class="carousel-indicators">
<li data-target="#myCarousel" data-slide-to="0" class="active"></li>
<li data-target="#myCarousel" data-slide-to="1"></li>
<li data-target="#myCarousel" data-slide-to="2"></li>
</ul>
<!-- The slideshow -->
<div class="carousel-inner">
<div class="carousel-item active">
<img src="file:///C:/Users/Vishal%20Kashyap/Downloads/The-Fantastic-Four-2015_1920x1080.jpg" alt="Los Angeles" width="1100" height="500">
</div>
<div class="carousel-item">
<img src="file:///C:/Users/Vishal%20Kashyap/Downloads/55.jpg" alt="Chicago" width="1100" height="500">
</div>
<div class="carousel-item">
<img src="file:///C:/Users/Vishal%20Kashyap/Downloads/4.jpg" alt="New York" width="1100" height="500">
</div>
<div class="carousel-item">
<img src="file:///C:/Users/Vishal%20Kashyap/Downloads/3.jpg" alt="New York" width="1100" height="500">
</div>
<div class="carousel-item">
<img src="file:///C:/Users/Vishal%20Kashyap/Downloads/2.jpg" alt="New York" width="1100" height="500">
</div>
<div class="carousel-item">
<img src="file:///C:/Users/Vishal%20Kashyap/Downloads/1.jpg" alt="New York" width="1100" height="500">
</div>
</div>
<!-- Left and right controls -->
<a class="carousel-control-prev" href="#myCarousel" data-slide="prev">
<span class="carousel-control-prev-icon"></span>
</a>
<a class="carousel-control-next" href="#myCarousel" data-slide="next">
<span class="carousel-control-next-icon"></span>
</a>
</div>
</div>
</div>
<div id="tags"></div>
<div id="myNav" class="overlay">
<!-- Button to close the overlay navigation -->
<a href="javascript:void(0)" class="closebtn" onclick="closeNav()">×</a>
<!-- Overlay content -->
<div class="overlay-content" id="overlay-content"></div>
<a href="javascript:void(0)" class="arrow left-arrow" id="left-arrow">⇐</a>
<a href="javascript:void(0)" class="arrow right-arrow" id="right-arrow" >⇒</a>
</div>
<main id="main"></main>
<div class="pagination">
<div class="page" id="prev">Previous Page</div>
<div class="current" id="current">1</div>
<div class="page" id="next">Next Page</div>
</div>
<script src="script.js"></script>
</body>
</html>