-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
53 lines (50 loc) · 2.11 KB
/
contact.html
File metadata and controls
53 lines (50 loc) · 2.11 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contact Us - HECA Fitness</title>
<link rel="stylesheet" href="styles.css">
<script src="contact.js" defer></script>
</head>
<body>
<header>
<div class="logo">
<a href="index.html"><img src="Images/hecafitness.png" alt="HECA Fitness Logo"></a>
</div>
<nav>
<ul>
<li><a href="meal-prep.html">Meal Prep</a></li>
<li><a href="exercise.html">Exercise</a></li>
<li><a href="contact.html" class="active">Contact</a></li>
<li><a href="profile.html">Profile</a></li>
</ul>
</nav>
</header>
<main>
<section class="form-section">
<h1>Contact Us</h1>
<p>We’d love to hear from you! Please fill out the form below or reach us using the provided contact details.</p>
<form id="contact-form">
<label for="name">Your Name:</label>
<input type="text" id="name" name="name" placeholder="John Doe" required>
<label for="email">Your Email:</label>
<input type="email" id="email" name="email" placeholder="you@example.com" required>
<label for="message">Your Message:</label>
<textarea id="message" name="message" rows="5" placeholder="Write your message here..." required></textarea>
<button type="submit" class="cta-button">Send Message</button>
</form>
<div id="form-response"></div>
</section>
<section class="contact-info">
<h2>Other Ways to Reach Us</h2>
<p><strong>Email:</strong> support@hecafitness.com</p>
<p><strong>Phone:</strong> +1 (555) 123-4567</p>
<p><strong>Address:</strong> 123 HECA Street, Fitness City, FT 45678</p>
</section>
</main>
<footer>
<p>© 2024 HECA Fitness. All Rights Reserved.</p>
</footer>
</body>
</html>