23 lines
740 B
HTML
23 lines
740 B
HTML
<!-- 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>
|