-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
67 lines (64 loc) · 2.42 KB
/
index.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
62
63
64
65
66
67
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Wanna Talk About It</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.1/css/all.min.css">
<link rel="stylesheet" href="assets/main.css">
</head>
<body>
<div class="blur-overlay"></div>
<div class="container">
<header>
<h1>Wanna Talk About It</h1>
<p>We're here to help you through difficult times.🍃😌</p>
</header>
<div class="card-container">
<div class="card" onclick="showPopup('depression')">
<h2>Depression</h2>
<p>Learn about depression and how to cope</p>
</div>
<div class="card" onclick="showPopup('anxiety')">
<h2>Anxiety</h2>
<p>Understanding and managing anxiety</p>
</div>
<div class="card" onclick="showPopup('self-harm')">
<h2>Self-Harm</h2>
<p>Getting help for self-harm thoughts</p>
</div>
<div class="card" onclick="showPopup('therapy')">
<h2>Therapy Places</h2>
<p>Find therapists in Ethiopia</p>
</div>
<div class="card" onclick="showPopup('movies')">
<h2>Movies</h2>
<p>Films that can help and inspire</p>
</div>
<div class="card" onclick="showPopup('books')">
<h2>Books</h2>
<p>Recommended reads for support</p>
</div>
<div class="card" onclick="showPopup('podcasts')">
<h2>Podcasts</h2>
<p>Listen to supportive content</p>
</div>
<div class="card" onclick="showPopup('apps')">
<h2>Mobile Apps</h2>
<p>Helpful apps for mental health</p>
</div>
</div>
<div class="join-community">
<h2>Join Our Community</h2>
<button type="submit" onclick="joinTelegram(event)"><i class="fab fa-telegram-plane"></i></button>
</div>
</div>
<div class="popup" id="popup">
<div class="popup-content">
<span class="close-btn" onclick="closePopup()">×</span>
<div id="popup-text"></div>
</div>
</div>
<script src="assets/main.js"></script>
</body>
</html>