herreweb_site/templates/pages/contact.html

23 lines
740 B
HTML
Raw Normal View History

2023-12-29 21:37:15 +00:00
<!-- contact.html -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contact Us - Herreweb</title>
<link rel="stylesheet" type="text/css" href="{{ url_for('static', filename='styles.css') }}">
<!-- Add any additional styles or scripts for the contact page -->
</head>
<body>
<div class="main-container">
<h2>Contact Us</h2>
<p>Have a question or want to get in touch? We'd love to hear from you. Please feel free to reach out through any of the following methods:</p>
<h3>Email</h3>
<p>Email us at: <a href="mailto:info@herreweb.com">info@herreweb.com</a></p>
</div>
</body>
</html>