-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
61 lines (58 loc) · 2.3 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contact - Chinese Acupuncture</title>
<link href="https://fonts.googleapis.com/css2?family=Open+Sans&family=Roboto:wght@700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css">
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<h1>Chinese Acupuncture</h1>
</header>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="services.html">Services</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
<main>
<h2>Contact Us</h2>
<p>Get in touch with us to schedule an appointment or ask any questions.</p>
<form action="#" method="post" class="fade-in">
<div class="card">
<label for="name"><i class="fas fa-user"></i> Name:</label>
<input type="text" id="name" name="name" required>
<label for="email"><i class="fas fa-envelope"></i> Email:</label>
<input type="email" id="email" name="email" required>
<label for="message"><i class="fas fa-comment"></i> Message:</label>
<textarea id="message" name="message" rows="5" required></textarea>
<input type="submit" value="Send" class="btn">
</div>
</form>
<div class="card fade-in">
<h3><i class="fas fa-map-marker-alt"></i> Our Location</h3>
<p>123 Acupuncture Street<br>Wellness City, WC 12345</p>
<h3><i class="fas fa-phone"></i> Phone</h3>
<p>(555) 123-4567</p>
</div>
</main>
<footer>
<p>© 2024 Chinese Acupuncture Clinic. All rights reserved.</p>
</footer>
<script>
document.addEventListener('DOMContentLoaded', (event) => {
const cards = document.querySelectorAll('.card, form');
cards.forEach((card, index) => {
setTimeout(() => {
card.classList.add('fade-in');
}, 200 * index);
});
});
</script>
</body>
</html>