<!DOCTYPE html>
<html>
<head>
<title>Contact Us</title>
<style>
/* Add your custom CSS styles here */
/* Example: Set the form width to 50% and center it on the page */
form {
width: 50%;
margin: 0 auto;
}
</style>
</head>
<body>
<h1>Contact Us</h1>
<form action="/submit_contact_form" method="post">
<label for="name">Name:</label><br>
<input type="text" id="name" name="name"><br>
<label for="email">Email:</label><br>
<input type="email" id="email" name="email"><br>
<label for="message">Message:</label><br>
<textarea id="message" name="message" rows="4" cols="50"></textarea><br><br>
<input type="submit" value="Submit">
</form>
</body>
</html>