This is a simple contact form with fields for name, email, and message. It uses labels for accessibility and placeholders to guide users.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Simple Contact Form</title>
</head>
<body>
<main>
<h1>Contact Us</h1>
<form action="/submit-contact" method="POST" aria-label="Contact form">
<label for="name">Name:</label><br>
<input type="text" id="name" name="name" required placeholder="Your full name"><br><br>
<label for="email">Email:</label><br>
<input type="email" id="email" name="email" required placeholder="you@example.com"><br><br>
<label for="message">Message:</label><br>
<textarea id="message" name="message" rows="4" required placeholder="Write your message here"></textarea><br><br>
<button type="submit">Send Message</button>
</form>
</main>
</body>
</html>