-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathservices.html
More file actions
89 lines (78 loc) · 3.06 KB
/
services.html
File metadata and controls
89 lines (78 loc) · 3.06 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
79
80
81
82
83
84
85
86
87
88
89
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Services - MELOCORE MENTAL HELP</title>
<link rel="stylesheet" href="melo.css">
<link rel="stylesheet" href="serv.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">
<div class="logo-text">
<h1>MELOCORE</h1>
<h6><i>A WAY TO YOUR INNER HARMONY</i></h6>
<br><br>
</div>
</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="page-content">
<div class="container">
<h2>Our Services</h2>
<p>At MELOCORE, we offer a range of services designed to support your mental health journey.</p>
<img src="C:\Users\aniru\OneDrive\Documents\2.png" alt="Services Image">
<div class="service red">
<h3>Individual Therapy</h3>
<p>One-on-one sessions with a licensed therapist tailored to your specific needs.</p>
<p><strong>Cost:</strong> $100/hour</p>
</div>
<div class="service orange">
<h3>Group Therapy</h3>
<p>Therapeutic sessions in a supportive group setting.</p>
<p><strong>Cost:</strong> $50/hour</p>
</div>
<div class="service yellow">
<h3>Couples Therapy</h3>
<p>Sessions designed for couples to address relationship issues.</p>
<p><strong>Cost:</strong> $120/hour</p>
</div>
<div class="service green">
<h3>Family Therapy</h3>
<p>Helping families improve communication and resolve conflicts.</p>
<p><strong>Cost:</strong> $150/hour</p>
</div>
<div class="service blue">
<h3>AI-Powered Mental Health Tools</h3>
<p>Innovative AI tools to help manage stress, anxiety, and other mental health challenges.</p>
<p><strong>Cost:</strong> $30/month</p>
</div>
<div class="service purple">
<h3>Mental Health Workshops</h3>
<p>Educational workshops to empower you on your mental health journey.</p>
<p><strong>Cost:</strong> $200/workshop</p>
</div>
</div>
</section>
<footer>
<div class="container">
<p>© 2024 MELOCORE MENTAL HELP. All rights reserved.</p>
</div>
</footer>
</body>
</html>