init commit

This commit is contained in:
2026-08-04 06:53:36 -06:00
commit 5df8484e8f
91 changed files with 2859 additions and 0 deletions
+41
View File
@@ -0,0 +1,41 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Contact</title>
</head>
<body>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="contact.html">Contact</a></li>
<li><a href="about.html">About</a></li>
<li><a href="order.html">Order</a></li>
</ul>
<h1>Contact</h1>
<form action="https://www.stonecoldprofessor.com/pizza-contact.php" method="post">
<label for="first-name">First Name:</label><br>
<input type="text" name="first-name"><br>
<label for="last-name">Last Name:</label><br>
<input type="text" name="last-name"><br>
<label for="email">Email:</label><br>
<input type="text" name="email"><br>
<label for="message">Message:</label><br>
<textarea name="message"></textarea><br><br><br>
<input type="submit" value="Send">
<input type="reset" name="Clear">
</form>
</body>
</html>