Copy the code below:
<!DOCTYPE html>
<html lang="en">
<?php
$pageTitle = "About Us";
include 'includes/head.php';
?>
<body>
<?php include 'includes/navbar.php'; ?>
<div class="container mt-5">
<h1>About Us</h1>
<p>This will be a page about us.</p>
</div>
<?php include 'includes/scripts.php'; ?>
</body>
</html>