Generated on Jan 18, 2025, 9:24:07 PMgemini-1.5-flash
<!DOCTYPE html>
<html>
<head>
<title>Contact Form</title>
<style>
body {
font-family: sans-serif;
}
.container {
max-width: 600px;
margin: 0 auto;
padding: 20px;
}
label {
display: block;
margin-bottom: 5px;
}
input[type="text"],
input[type="email"],
textarea {
width: 100%;
padding: 10px;
margin-bottom: 10px;
border: 1px solid #ccc;
box-sizing: border-box;
}
button[type="submit"] {
background-color: #4CAF50;
color: white;
padding: 10px 20px;
border: none;
cursor: pointer;
}
a {
color: blue;
text-decoration: underline;
}
</style>
</head>
<body>
<div class="container">
<h1>Contact Us</h1>
<form action="mailto:your_email@example.com" method="post" enctype="text/plain">
<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>
<label>Contact Information:</label>
<p>
<a href="mailto:alternative_email@example.com">alternative_email@example.com</a><br>
<a href="tel:+15551234567">+1 (555) 123-4567</a><br>
<a href="https://www.google.com/maps/search/123+Main+Street,+Anytown,+CA">123 Main Street, Anytown, CA</a> </p>
<button type="submit">Send</button>
</form>
</div>
</body>
</html>