-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathservices.php
More file actions
47 lines (45 loc) · 2.16 KB
/
Copy pathservices.php
File metadata and controls
47 lines (45 loc) · 2.16 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
<?php include 'includes/config.php' ?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Our Services</title>
<link rel="stylesheet" href="css/services.css">
<link rel="stylesheet" href="css/nav.css" />
<link rel="stylesheet" href="css/footer.css">
<link rel="icon" type="image/x-icon" href="images/logo/hotellogo.png">
</head>
<body>
<?php include 'includes/header.php'; ?>
<section class="services-section">
<h2 class="section-title">Our Services</h2>
<p class="section-description">
We provide exceptional hospitality with top-notch comfort, convenience, and a memorable experience for our guest
</p>
<div class="services-container">
<?php
// Array of services
$services = [
["title" => "Fine Dining", "description" => "Enjoy a variety of gourmet dishes prepared by world-class chefs in a luxurious ambiance."],
["title" => "Spa & Wellness", "description" => "Rejuvenate with our exclusive spa treatments, massages, and wellness programs."],
["title" => "Swimming Pool", "description" => "Dive into our crystal-clear pool and enjoy a refreshing swim with poolside service."],
["title" => "Fitness Center", "description" => "Stay fit with our state-of-the-art gym featuring the latest workout equipment."],
["title" => "24/7 Room Service", "description" => "Enjoy round-the-clock room service, ensuring your stay is seamless and convenient."],
["title" => "Free Wifi", "description" => "Stay connected with high-speed internet access throughout our hotel."],
];
// Loop through services array to generate service cards
foreach ($services as $service) {
echo "<div class='service-box'>
<h3>{$service['title']}</h3>
<p>{$service['description']}</p>
</div>";
}
?>
</div>
</section>
<?php include 'includes/footer.php'; ?>
<script src="js/navbar.js"></script>
<script src="https://kit.fontawesome.com/2e5e758ab7.js" crossorigin="anonymous"></script>
</body>
</html>