-
Notifications
You must be signed in to change notification settings - Fork 2
/
events.html
222 lines (222 loc) · 8.62 KB
/
events.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
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Events - AFK Hotel</title>
<link rel="icon" href="img/icon.png">
<link rel="stylesheet" href="css/style.css" />
<!-- Bootstrap LINKS -->
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
integrity="sha384-B0vP5xmATw1+K9KRQjQERJvTumQW0nPEzvF6L/Z6nronJ3oUOFUFpCjEUQouq2+l"
crossorigin="anonymous"
/>
<script
src="https://code.jquery.com/jquery-3.5.1.slim.min.js"
integrity="sha384-DfXdz2htPH0lsSSs5nCTpuj/zy4C+OGpamoFVy38MVBnE+IbbVYUew+OrCXaRkfj"
crossorigin="anonymous"
></script>
<script
src="https://cdn.jsdelivr.net/npm/[email protected]/dist/umd/popper.min.js"
integrity="sha384-9/reFTGAW83EW2RDu2S0VKaIzap3H66lZH81PoYlFhbGU+6BZp6G7niu735Sk7lN"
crossorigin="anonymous"
></script>
<script
src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.min.js"
integrity="sha384-+YQ4JLhjyBLPDQt//I+STsc9iw4uQqACwlvpslubQzn4u2UU2UFM80nGisd026JF"
crossorigin="anonymous"
></script>
<!--angular js-->
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.8.2/angular.min.js"></script>
<!-- Font Awesome -->
<script
src="https://kit.fontawesome.com/2ddbad06a5.js"
crossorigin="anonymous"
></script>
</head>
<body class="rooms-bg" background="img/Events-BG.jpg">
<header>
<div class="container-fluid">
<a href= "index.html"><img src="img/LOGO TRAN.png" alt="LOGO" width="100px" height="100px"></a>
<a class = "title-logo" href= "index.html"> AFK Hotel</a>
<nav class="navbar navbar-expand-lg navbar-light float-right pt-4">
<button type="button" class="navbar-toggler" data-toggle="collapse" data-target="#navbarCollapse">
<span class="navbar-toggler-icon pt-3"></span>
</button>
<div class="collapse navbar-collapse" id="navbarCollapse">
<ul class="navbar-nav mx-auto">
<li class="nav-item active">
<a class="nav-link" href="index.html">HOME</a>
</li>
<li class="nav-item active">
<a class="nav-link" href="aboutus.html">ABOUT</a>
</li>
<li class="nav-item active">
<a class="nav-link" href="booking.html">BOOKING</a>
</li>
<li class="nav-item dropdown active">
<a class="nav-link dropdown-toggle" href="#" id="navbarDropdown" role="button"
data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
SERVICES
</a>
<div class="dropdown-menu" aria-labelledby="navbarDropdown">
<a class="dropdown-item" href="rooms.html">Rooms</a>
<a class="dropdown-item" href="facilities.html">Facilities</a>
<a class="dropdown-item" href="events.html">Events</a>
</div>
</li>
<li class="nav-item active">
<a class="nav-link" href="contactus.html">CONTACT US</a>
</li>
</ul>
</div>
</nav>
</div>
</div>
</header>
<main>
<h1 class="regular col-xs-12"><br />EVENTS</h1>
<br />
<!-- CAROUSEL 1 -->
<div
id="carouselExampleCaptions"
class="carousel slide"
data-ride="carousel"
>
<ol class="carousel-indicators">
<li
data-target="#carouselExampleCaptions"
data-slide-to="0"
class="active"
></li>
<li data-target="#carouselExampleCaptions" data-slide-to="1"></li>
</ol>
<div class="carousel-inner" role="listbox">
<div class="carousel-item active">
<div class="carousel-caption">
<h5 class="carousel-text-rooms">BIRTHDAY</h5>
<p class="carousel-desc-rooms">
Celebrate you birthday with
<br />
us and we will make it
<br />
wonderful.
</p>
</div>
<img
src="img/birthday.jpeg"
class="d-block mx-auto"
alt="GARDEN"
width="70%"
/>
</div>
<div class="carousel-item">
<div class="carousel-caption">
<h5 class="carousel-text-rooms">WEDDING</h5>
<p class="carousel-desc-rooms">
AFK Hotel, we turn your dream
<br />
wedding into an unforgettable
<br />
moment.
</p>
</div>
<img
src="img/wedding.jpeg"
class="d-block mx-auto"
alt="GARDEN"
width="70%"
/>
</div>
</div>
<br />
<br />
<a
class="carousel-control-prev"
href="#carouselExampleCaptions"
role="button"
data-slide="prev"
>
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
<span class="sr-only">Previous</span>
</a>
<a
class="carousel-control-next"
href="#carouselExampleCaptions"
role="button"
data-slide="next"
>
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="sr-only">Next</span>
</a>
</div>
</main>
<footer>
<div class="page-footer col-sm-12 font-small indigo">
<div class="container">
<div class="row text-center d-flex justify-content-center pt-5 mb-3">
<div class="col-md-2 mb-3">
<h6 class="text-uppercase font-weight-bold">
<a href="index.html">Home</a>
</h6>
</div>
<div class="col-md-2 mb-3">
<h6 class="text-uppercase font-weight-bold">
<a href="aboutus.html">About</a>
</h6>
</div>
<div class="col-md-2 mb-3">
<h6 class="text-uppercase font-weight-bold">
<a href="booking.html">BOOKINGS</a>
</h6>
</div>
<div class="col-md-2 mb-3">
<h6 class="text-uppercase font-weight-bold">
<a href="contactus.html">CONTACT US</a>
</h6>
</div>
</div>
<hr class="rgba-white-light" style="margin: 0 15%;">
<div class="row d-flex text-center justify-content-center mb-md-0 mb-4">
<br>
<br>
</div>
<div class="row mx-auto">
<div class="btn-group-horizontal mx-auto ">
<div class="mx-5 flex-center">
<!-- Facebook -->
<a class="fb-ic" href="https://facebook.com/AFK-Hotel-108336021449130/" target="_blank">
<i class="fab fa-facebook-f fa-lg white-text mr-4"> </i>
</a>
<!-- Twitter -->
<a class="tw-ic" href="https://twitter.com/afkhotel" target="_blank">
<i class="fab fa-twitter fa-lg white-text mr-4"> </i>
</a>
<!--Instagram-->
<a class="ins-ic" href="https://instagram.com/afkhotel" target="_blank">
<i class="fab fa-instagram fa-lg white-text mr-4"> </i>
</a>
<!--Email-->
<a class="pin-ic" href="[email protected]" target="_blank">
<i class="fas fa-envelope fa-lg white-text"></i>
</a>
</div>
</div>
</div>
<br>
<br>
<div class = "citation-footer" style="text-align:center; font-family: poppins; font-size: 18px;">
<a href="citation.html" class = "citation-footer"> Citation</a>
</div>
<!-- Copyright -->
<div class="footer-copyright text-center py-3">© 2021 AFK Hotel Developed by Sani's Babies. All Rights
Reserved.</div>
<!-- Copyright -->
</div>
</div>
</footer>
</body>
</html>