<!DOCTYPE html>
<html>

<head>

<title>Contact Apex Delivery</title>

<link rel="stylesheet" href="css/style.css">

</head>

<body class="contact-bg">

<?php include "navbar.php"; ?>

<section class="contact-section">

<div class="contact-card">

<h2>Contact Apex Delivery</h2>

<form method="POST">

<input type="text" name="name" placeholder="Full Name" required>

<input type="email" name="email" placeholder="Email Address" required>

<textarea name="message" placeholder="Your message"></textarea>

<button type="submit">Send Message</button>

</form>

</div>

</section>

<?php include "footer.php"; ?>

</body>
</html>