-
Notifications
You must be signed in to change notification settings - Fork 0
/
gallery.html
166 lines (134 loc) · 3.98 KB
/
gallery.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
<!DOCTYPE html>
<html>
<head>
<title>GALLERY</title>
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.15.4/css/all.css" integrity="sha384-DyZ88mC6Up2uqS4h/KRgHuoeGwBcD4Ng9SiP4dIRy0EXTlnuz47vAwmeGwVChigm" crossorigin="anonymous" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/OwlCarousel2/2.3.4/assets/owl.carousel.css" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/OwlCarousel2/2.3.4/assets/owl.theme.default.min.css" />
<style>
body{
font-family: 'Chilanka', cursive;
padding: 0;
margin: 0;
}
.main-header h1{
font-family: 'Sansita Swashed', cursive;
margin: 0;
padding: 0;
padding: 14px;
cursor: pointer;
}
.main-header{
background: url("../room.jpg") center no-repeat;
background-size: cover;
background-position: fixed;
height: 100vh;
}
.logo{
height: 60px;
width: 100px;
/* float: left; */
margin-top: 15px;
}
.header{
font-family: 'Sansita Swashed', cursive;
display: flex;
justify-content: space-around;
}
.navigation ul{
display: flex;
flex-wrap: wrap;
}
.navigation ul li
{
list-style: none;
margin-left: 20px;
padding: 10px;
}
.navigation ul li a{
text-decoration: none;
color: black;
}
.navigation ul li:hover{
background-color: white;
padding: 10px;
}
.main-content-header
{
margin: 0px;
padding: 0px;
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
background: white;
}
.gallery .heading {
font-size:16px;
font-family: "Lato", sans-serif;
font-weight: 400;
line-height: 1.8em;
color: #666;
text-align-last: center;
}
.item {
align-items: center;
}
</style>
</head>
<body>
<div class = "main-header">
<div class = "header">
<img src = "images/logo.jpg" class="logo">
<div class = "navigation">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="Hotel.html">Hotel</a></li>
<li><a href="attraction.html">Experience</a></li>
<li><a href="gallery.html">Gallery</a></li>
<li><a href="Form.html">Bookings</a></li>
<li><a href="login.html">Login</a></li>
</ul>
</div>
</div>
<div class="gallery ">
<div class="container top">
<div class="heading">
<h1>PHOTOS</h1>
<h2>Our Gallery </h2>
<h5>WELCOME TO OUR PHOTO GALLERY</h5>
<h4>Photo Gallery of Our Hotel
</h4>
</div>
<div class="item">
<img src="imagess\g0.jpg" width="500"
height="350" position="relative">
<img src="imagess\g1.jpg" width="500"
height="350" position="relative">
<img src="imagess\g2.jpg" width="500"
height="350" position="relative">
<img src="imagess\g3.jpg" width="500"
height="350" position="relative">
<img src="imagess\g4.jpg" width="500"
height="350" position="relative">
<img src="imagess\g5.jpg" width="500"
height="350" position="relative">
<img src="imagess\g6.jpg"width="500"
height="350" position="relative">
<img src="imagess\g7.jpg"width="500"
height="350" position="relative">
<img src="imagess\g8.png" width="500"
height="350" position="relative">
<img src="imagess\g9.png" width="500"
height="350" position="relative">
<img src="imagess\g10.jpg" width="500"
height="350" position="relative">
<img src="imagess\g11.png" width="500"
height="350" position="relative">
<img src="imagess\g12.png" width="500"
height="350" position="relative">
</div>
</div>
</div>
</body>
</html>