-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfacilities.php
More file actions
60 lines (52 loc) · 1.59 KB
/
facilities.php
File metadata and controls
60 lines (52 loc) · 1.59 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>GrandStay - Facilities</title>
<link rel="icon" href="images/logo/hotel-logo.avif">
<?php require('inc/links.php'); ?>
<style>
.pop:hover{
border-top-color: var(--teal) !important;
transform: scale(1.03);
transition: all 0.3s;
}
</style>
</head>
<body class="bg-light">
<?php require('inc/header.php'); ?>
<div class="my-5 px-4">
<h2 class="fw-bold h-font text-center">OUR FACILITIES</h2>
<div class="h-line bg-dark "></div>
<p class="text-center mt-3">
"Discover unparalleled luxury, modern amenities, spacious rooms,
<br> serene
ambiance, premium comfort, stylish interiors,
<br>
and quality hospitality for unforgettable stays."
</p>
</div>
<div class="container">
<div class="row">
<?php
$res = selectAll('facilities');
while($row = mysqli_fetch_assoc($res)){
echo<<<data
<div class="col-lg-4 col-md-6 mb-5 px-4">
<div class="bg-white rounded shadow p-4 border-top border-4 border-dark pop">
<div class="d-flex align-items-center mb-2">
<img src="images/features/facility.png" width="40px">
<h5 class="m-0 ms-3">$row[name]</h5>
</div>
<p>$row[description]</p>
</div>
</div>
data;
}
?>
</div>
</div>
<?php require('inc/footer.php');?>
</body>
</html>