-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.php
28 lines (28 loc) · 1.3 KB
/
about.php
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About Us - Event Management System</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<?php
include('partials/nav.php');
?>
</header>
<main>
<section id="about">
<h1>About Us</h1>
<p>We are a team of passionate event planners who are dedicated to creating memorable experiences for our clients. Our mission is to provide exceptional event planning services that exceed our clients' expectations.</p>
<p>With years of experience in the industry, we have developed a deep understanding of what it takes to plan and execute successful events. We work closely with our clients to understand their vision and turn it into a reality.</p>
<p>Our services include event design, vendor coordination, logistics management, and on-site event management. We handle all the details, so our clients can sit back and enjoy their event.</p>
<p>Contact us today to learn more about our services and how we can make your next event a success.</p>
</section>
</main>
<?php
include('partials/footer.php');
?>
</body>
</html>