forked from Avdhesh-Varshney/WebMasterLog
-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
35 lines (34 loc) · 1.22 KB
/
contact.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>FitnessPro - Contact Us</title>
<link rel="stylesheet" href="contact.css">
</head>
<body>
<header>
<nav>
<div class="logo">FitnessPro</div>
<ul class="nav-links">
<li><a href="index.html">Home</a></li>
<li><a href="exercises.html">Exercises</a></li>
<li><a href="plans.html">Plans</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
</header>
<div class="main-container">
<div class="contact-form-container">
<h2>Contact Us</h2>
<p>We'd love to hear from you! Please fill out the form below to get in touch.</p>
<form>
<input type="text" name="name" placeholder="Your Name" required>
<input type="email" name="email" placeholder="Your Email" required>
<textarea name="message" placeholder="Your Message" rows="5" required></textarea>
<input type="submit" value="Send Message">
</form>
</div>
</div>
</body>
</html>