-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
78 lines (67 loc) · 2.48 KB
/
contact.html
File metadata and controls
78 lines (67 loc) · 2.48 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contact - MELOCORE</title>
<link rel="stylesheet" href="melo.css">
<link rel="stylesheet" href="contact.css">
</head>
<body>
<header>
<div class="container">
<div class="logo">
<img src="C:\Users\aniru\OneDrive\Documents\melo.jpg" alt="Tree Logo" class="tree-logo">
<h1>MELOCORE</h1>
<h5><i>A WAY TO YOUR INNER HARMONY</i></h5>
</div>
<nav>
<ul>
<li><a href="home.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="services.html">Services</a></li>
<li><a href="articles.html">Articles</a></li>
<li><a href="therapy.html">Therapy</a></li>
<li><a href="contact.html">Contact</a></li>
<li><a href="login.html">Login</a></li>
<li><a href="signup.html">Sign Up</a></li>
</ul>
</nav>
</div>
</header>
<section class="hero">
<div class="container">
<h2>Contact Us</h2>
<p>We're here to help. Reach out to us with any questions or to schedule an appointment.</p>
</div>
</section>
<section class="intro">
<div class="container">
<h2><u>Get in Touch</u></h2>
<section class="contact-details">
<div class="container">
<h3><u>Contact Information</h3></u>
<p>If you have any questions or need assistance, please feel free to contact us:</p>
<ul>
<li><strong>Email:</strong> <a href="mailto:melocore@global.in">melocore@global.in</a></li>
<li><strong>Phone:</strong> 0321 8888 3444</li>
</ul>
<h3>Contact Form</h3>
<form action="submit_contact_form.php" method="post">
<label for="name">Name:</label>
<input type="text" id="name" name="name" required>
<label for="email">Email:</label>
<input type="email" id="email" name="email" required>
<label for="message">Message:</label>
<textarea id="message" name="message" rows="4" required></textarea>
<button type="submit">Submit</button>
</form>
</div>
</section>
<footer>
<div class="container">
<p>© 2024 MELOCORE. All rights reserved.</p>
</div>
</footer>
</body>
</html>