Files
cs1430/pizza-2/contact.html
T
2026-08-04 06:53:36 -06:00

46 lines
1.0 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" href="css/style.css">
<title>Contact</title>
</head>
<body>
<nav>
<ul>
<a href="index.html"><li>Ashton Pizzeria</li></a>
<a href="contact.html"><li>Contact Us</li></a>
<a href="about.html"><li>About</li></a>
<a href="order.html"><li id="spotlight">Order Now!</li></a>
</ul>
</nav>
<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>