41 lines
925 B
HTML
41 lines
925 B
HTML
<!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> |