PHP lab 8

This commit is contained in:
2026-03-12 23:46:12 -04:00
parent 8b132e776f
commit 8c78e75b97
17 changed files with 273 additions and 1 deletions
@@ -0,0 +1,54 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" type="text/css" href="css/styles.css">
<title>l_mclean215318's Webpage</title>
</head>
<body>
<!-- Header -->
<header class="siteHeader">
<section>
<h1 class="logo">
<a href="index.php">
<img src="images/logo.png" alt="Pizza logo">
l_mclean215318's Pizza
</a>
</h1>
<nav>
<ul>
<li>
<a href="order.php">Place Order</a>
</li>
<li>
<a href="#">Menu</a>
</li>
<li>
<a href="#">Specials</a>
</li>
<li>
<a href="#">Register</a>
</li>
</ul>
</nav>
</section>
</header>
<!-- Main Content -->
<main class="siteContent">
<h1>Welcome</h1>
<p>This is the content of the home page.</p>
</main>
<!-- Footer -->
<footer class="siteFooter">
<p>
<strong>&copy; 2025</strong>l_mclean215318's Pizza. All rights reserved.
</p>
</footer>
</body>
</html>