36 lines
1.3 KiB
HTML
36 lines
1.3 KiB
HTML
<title>Contact Us</title>
|
|
<a href="credits.html">Back</a>
|
|
<a href="https://mail.google.com/mail/u/0/?tab=rm&ogbl#search/2029winbr31%40moundsviewschools.org">Contact Me</a></p>
|
|
<a href="https://scratch.mit.edu/projects/922703647/">My Broken Scratch Website</a>
|
|
<link rel="stylesheet" href="Contact.css">
|
|
<a href="https://www.pixilart.com/penguinboy69/gallery">See Art That Miles maybe will Use</a>
|
|
<a href="https://penguinrobert1.github.io/uwu.com/">See The Scratch Company Site</a>
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Contact Us</title>
|
|
<link rel="stylesheet" href="Contact.css">
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<h1>Contact Us</h1>
|
|
<form id="contactForm">
|
|
<label for="name">Name:</label>
|
|
<input type="text" id="name" name="name" required>
|
|
|
|
<label for="email">Email:</label>
|
|
<input type="email" id="email" name="email" required>
|
|
|
|
<label for="message">Message:</label>
|
|
<textarea id="message" name="message" rows="5" required></textarea>
|
|
|
|
<button type="submit">Submit</button>
|
|
</form>
|
|
<p id="statusMessage"></p>
|
|
</div>
|
|
<script src="Contact.js"></script>
|
|
</body>
|
|
</html>
|