forked from ThunderShadows/SocialSync
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfeature.html
439 lines (397 loc) · 22.6 KB
/
feature.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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>SocialSync</title>
<meta content="width=device-width, initial-scale=1.0" name="viewport">
<meta content="" name="keywords">
<meta content="" name="description">
<link rel="stylesheet" href="lib/wow/customcursor.css">
<!-- Favicon -->
<link href="img/icon.png" rel="icon">
<!-- Google Web Fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;500&family=Roboto:wght@500;700;900&display=swap" rel="stylesheet">
<!-- Icon Font Stylesheet -->
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.10.0/css/all.min.css" rel="stylesheet">
<link href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.4.1/font/bootstrap-icons.css" rel="stylesheet">
<!-- Libraries Stylesheet -->
<link href="lib/animate/animate.min.css" rel="stylesheet">
<link href="lib/owlcarousel/assets/owl.carousel.min.css" rel="stylesheet">
<link href="lib/tempusdominus/css/tempusdominus-bootstrap-4.min.css" rel="stylesheet" />
<!-- Customized Bootstrap Stylesheet -->
<link href="css/bootstrap.min.css" rel="stylesheet">
<!-- Template Stylesheet -->
<link href="css/style.css" rel="stylesheet">
</head>
<body>
<!-- Spinner Start -->
<div id="spinner" class="show bg-white position-fixed translate-middle w-100 vh-100 top-50 start-50 d-flex align-items-center justify-content-center">
<div class="spinner-grow text-primary" style="width: 3rem; height: 3rem;" role="status">
<span class="sr-only">Loading...</span>
</div>
</div>
<!-- Spinner End -->
<!-- Topbar Start -->
<div class="container-fluid bg-light p-0 wow fadeIn" data-wow-delay="0.1s">
<div class="row gx-0 d-none d-lg-flex">
<div class="col-lg-7 px-5 text-start">
<div class="h-100 d-inline-flex align-items-center py-3 me-4">
<small class="fa fa-map-marker-alt text-primary me-2"></small>
<small>XYZ State and District</small>
</div>
<div class="h-100 d-inline-flex align-items-center py-3">
<small class="far fa-clock text-primary me-2"></small>
<small>Mon - Fri : 09.00 AM - 09.00 PM</small>
</div>
</div>
<div class="col-lg-5 px-5 text-end">
<div class="h-100 d-inline-flex align-items-center py-3 me-4">
<small class="fa fa-phone-alt text-primary me-2"></small>
<small>+012 345 6789</small>
</div>
<div class="h-100 d-inline-flex align-items-center">
<a class="btn btn-sm-square rounded-circle bg-white me-1 social-icon" href="https://www.facebook.com/psychologytoday">
<i class="fab fa-facebook-f"></i>
</a>
<a class="btn btn-sm-square rounded-circle bg-white me-1 social-icon" href="https://twitter.com/psychtoday">
<i class="fab fa-twitter"></i>
</a>
<a class="btn btn-sm-square rounded-circle bg-white me-1 social-icon" href="https://www.linkedin.com/company/psychology-today">
<i class="fab fa-linkedin-in"></i>
</a>
<a class="btn btn-sm-square rounded-circle bg-white me-0 social-icon" href="">
<i class="fab fa-instagram"></i>
</a>
</div>
</div>
</div>
</div>
<!-- Topbar End -->
<!-- Navbar Start -->
<nav class="navbar navbar-expand-lg bg-white navbar-light sticky-top p-0 wow fadeIn" data-wow-delay="0.1s">
<a href="index.html" class="navbar-brand d-flex align-items-center px-4 px-lg-5">
<h1 class="m-0 text-primary">
<i class="fas fa-brain"></i> SocialSync
</h1>
</a>
<button type="button" class="navbar-toggler me-4" data-bs-toggle="collapse" data-bs-target="#navbarCollapse">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarCollapse">
<div class="navbar-nav mx-auto p-4 p-lg-0">
<a href="index.html" class="nav-item nav-link">Home</a>
<a href="about.html" class="nav-item nav-link">About</a>
<a href="https://www.verywellmind.com/" class="nav-item nav-link">Service</a>
<div class="nav-item dropdown">
<a href="#" class="nav-link dropdown-toggle active" data-bs-toggle="dropdown">Pages</a>
<div class="dropdown-menu rounded-0 rounded-bottom m-0">
<a href="feature.html" class="dropdown-item active">Feature</a>
<a href="team.html" class="dropdown-item">Our Therapist</a>
<a href="appointment.html" class="dropdown-item">Appointment</a>
<a href="testimonial.html" class="dropdown-item">Testimonial</a>
</div>
</div>
<a href="contact.html" class="nav-item nav-link">Contact</a>
</div>
<a href="" class="btn btn-primary custom-btn">Appointment<i class="fa fa-arrow-right ms-3"></i></a>
</div>
<button id="theme-switch">
<svg id="theme-icon" xmlns="http://www.w3.org/2000/svg" height="24px" viewBox="0 -960 960 960" width="24px" fill="#EFEFEF">
<!-- Light mode icon -->
<path id="light-icon" d="M480-120q-150 0-255-105T120-480q0-150 105-255t255-105q14 0 27.5 1t26.5 3q-41 29-65.5 75.5T444-660q0 90 63 153t153 63q55 0 101-24.5t75-65.5q2 13 3 26.5t1 27.5q0 150-105 255T480-120Z"/>
<!-- Dark mode icon -->
<path id="dark-icon" d="M480-280q-83 0-141.5-58.5T280-480q0-83 58.5-141.5T480-680q83 0 141.5 58.5T680-480q0 83-58.5 141.5T480-280ZM200-440H40v-80h160v80Zm720 0H760v-80h160v80ZM440-760v-160h80v160h-80Zm0 720v-160h80v160h-80ZM256-650l-101-97 57-59 96 100-52 56Zm492 496-97-101 53-55 101 97-57 59Zm-98-550 97-101 59 57-100 96-56-52ZM154-212l101-97 55 53-97 101-59-57Z"/>
</svg>
</button>
</nav>
<!-- Navbar End -->
<!-- Page Header Start -->
<div class="container-fluid page-header py-5 mb-5 wow fadeIn" data-wow-delay="0.1s">
<div class="container py-5">
<h1 class="display-3 text-black mb-3 animated slideInDown">Features</h1>
<nav aria-label="breadcrumb animated slideInDown">
<ol class="breadcrumb text-uppercase mb-0">
<li class="breadcrumb-item"><a class="text-black" href="index.html">Home</a></li>
<li class="breadcrumb-item"><a class="text-black" href="https://www.ihhp.comfree-eq-quiz/">Check your EQ!!</a></li>
</ol>
</nav>
<div class="row">
<div class="col-md-6">
<p class="text-black" text-align="left">Discover an exciting world of emotional intelligence with our interactive QR code scavenger hunt! Dive into insightful articles, engaging videos, and interactive games that will boost your emotional intelligence quotient. Scan the QR code throughout our website to uncover valuable resources and content that will spark your curiosity and ignite your imagination. Embark on a journey of self-discovery and personal growth, and have fun while learning!
</p>
</div>
<div class="col-md-6">
<img src="img/qrcode3.png" alt="Image description" class="float-right" style="width: 100%; height: 100%; object-fit: cover;">
</div>
</div>
<div class="row mt-4">
<div class="col-md-6">
<h2 class="text-black">Boost Your EQ with Our Interactive QR Code Scavenger Hunt</h2>
</div>
<div class="col-md-6">
<ul class="list-unstyled">
<li><strong>Insightful Articles</strong>: Dive into thought-provoking content that will broaden your understanding of emotional intelligence.</li>
<li><strong>Engaging Videos</strong>: Watch captivating videos that showcase real-life examples and expert advice on emotional intelligence.</li>
<li><strong>Interactive Games</strong>: Participate in fun and engaging games that will help you develop your emotional intelligence skills.</li>
<li><strong>Free EQ Quiz</strong>: Assess your emotional intelligence skills and receive personalized recommendations for improvement.</li>
</ul>
</div>
</div>
</div>
</div>
<!-- Page Header End -->
<!-- Feature Start -->
<div class="container-fluid bg-primary overflow-hidden px-lg-0" style="margin: 6rem 0;">
<div class="container feature px-lg-0">
<div class="row g-0 mx-lg-0">
<div class="col-lg-6 feature-text py-5 wow fadeIn" data-wow-delay="0.1s">
<div class="p-lg-5 ps-lg-0">
<p class="d-inline-block border rounded-pill text-light py-1 px-4">Features</p>
<h1 class="text-white mb-4">Why Mental Health is necessary!!</h1>
<p class="text-white mb-4 pb-2">Taking care of mental health is necessary for several reasons:
Productivity and Financial Security: Prioritizing mental health boosts overall productivity and financial stability. Poor mental health can lead to a drop in productivity, impacting financial well-being
</br>
</br>
Rising Mental Health Conditions: Statistics show that mental health conditions are on the rise, making it increasingly important to address and prioritize mental health care
</br>
</br>
Global Events Impacting Mental Health: The 2020s have been marked by significant global events, such as the COVID-19 pandemic and social upheavals, which have highlighted the importance of mental health and well-being
</br>
</br>
Public Awareness and Support: There is a growing recognition of the importance of mental health, with surveys indicating that mental health care is considered as important as physical health care by a large percentage of the population
</br>
</br>
Individual Well-Being: Improved mental health is a top resolution for many individuals, reflecting a personal commitment to well-being and a desire to combat issues such as loneliness, anxiety, and depression</p>
<p class="text-white mb-4" Take a Quiz for Checking your EQ(Emotional Intelligence)></p>
<div class="row g-4">
<div class="col-6">
<div class="d-flex align-items-center">
<div class="d-flex flex-shrink-0 align-items-center justify-content-center rounded-circle bg-light" style="width: 55px; height: 55px;">
<i class="fa fa-user-md text-primary"></i>
</div>
<div class="ms-4">
<p class="text-white mb-2"><strong>What Emotion Are You?</strong></p>
<a h5 class="text-white mb-4" href="https://uquiz.com/quiz/Cs6cqP/what-human-emotion-are-you">Check out now!!</a></h5>
</div>
</div>
</div>
<div class="col-6">
<div class="d-flex align-items-center">
<div class="d-flex flex-shrink-0 align-items-center justify-content-center rounded-circle bg-light" style="width: 55px; height: 55px;">
<i class="fa fa-check text-primary"></i>
</div>
<div class="ms-4">
<p class="text-white mb-2"><strong>What's Your Attachment Style?What's Your Attachment Style?</strong></p>
<a h5 class="text-white mb-4" href="https://www.verywellmind.com/attachment-styles-2795344">Lets dive in your world!!</a></h5>
</div>
</div>
</div>
<div class="col-6">
<div class="d-flex align-items-center">
<div class="d-flex flex-shrink-0 align-items-center justify-content-center rounded-circle bg-light" style="width: 55px; height: 55px;">
<i class="fa fa-comment-medical text-primary"></i>
</div>
<div class="ms-4">
<p class="text-white mb-2"><strong>How are handling your stress!! Come find out</strong></p>
<a h5 class="text-white mb-0" href="https://contest.techbriefs.com/2012/entries/medical/2430">Free Stress Level Indicator</a></h5>
</div>
</div>
</div>
<div class="col-6">
<div class="d-flex align-items-center">
<div class="d-flex flex-shrink-0 align-items-center justify-content-center rounded-circle bg-light" style="width: 55px; height: 55px;">
<i class="fa fa-headphones text-primary"></i>
</div>
<div class="ms-4">
<p class="text-white mb-2"><strong>ANGER BOOP-BOOP!!</strong></p>
<a h5 class="text-white mb-0" href="https://www.angermanage.co.uk/free-anger-test/">See your anger levels here!!</a></h5>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="col-lg-6 pe-lg-0 wow fadeIn" data-wow-delay="0.5s" style="min-height: 400px;">
<div class="position-relative h-100">
<img class="position-absolute img-fluid w-100 h-100" src="img/tpt3.png" style="object-fit: cover;" alt="">
</div>
</div>
</div>
</div>
</div>
<!-- Feature End -->
<!-- Footer Start -->
<div class="container-fluid bg-dark text-light footer mt-5 pt-5 wow fadeIn" data-wow-delay="0.1s">
<div class="container py-5">
<div class="row g-5">
<div class="col-lg-3 col-md-6">
<h5 class="text-light mb-4">Address</h5>
<p class="mb-2"><i class="fa fa-map-marker-alt me-3"></i>XYZ State and District</p>
<p class="mb-2"><i class="fa fa-phone-alt me-3"></i>+012 345 67890</p>
<p class="mb-2"><i class="fa fa-envelope me-3"></i>info@example.com</p>
<div class="d-flex pt-2">
<a class="btn btn-outline-light btn-social rounded-circle" href="https://twitter.com/psychtoday"><i class="fab fa-twitter"></i></a>
<a class="btn btn-outline-light btn-social rounded-circle" href="https://www.facebook.com/psychologytoday"><i class="fab fa-facebook-f"></i></a>
<a class="btn btn-outline-light btn-social rounded-circle" href=""><i class="fab fa-youtube"></i></a>
<a class="btn btn-outline-light btn-social rounded-circle" href=""><i class="fab fa-linkedin-in"></i></a>
</div>
</div>
<div class="col-lg-3 col-md-6">
<h5 class="text-light mb-4">Services</h5>
<a class="btn btn-link" href="">Clinical Psychologist</a>
<a class="btn btn-link" href="">Counseling Psychologist</a>
<a class="btn btn-link" href="">Educational Psychologist</a>
<a class="btn btn-link" href="">Neuropsychologist</a>
<a class="btn btn-link" href="">Therapy Space</a>
</div>
<div class="col-lg-3 col-md-6">
<h5 class="text-light mb-4">Quick Links</h5>
<a class="btn btn-link" href="about.html">About Us</a>
<a class="btn btn-link" href="contact.html">Contact Us</a>
<a class="btn btn-link" href="service.html">Our Services</a>
<a class="btn btn-link" href="">Terms & Condition</a>
<a class="btn btn-link" href="">Support</a>
</div>
<div class="col-lg-3 col-md-6">
<h5 class="text-light mb-4">Newsletter</h5>
<p>We're featuring voices from our community! Share your perspectives, experiences, or thought-provoking articles. This is an open platform to engage, inspire, and learn from one another. Please subscribe to our newsletter to get updated about our current developments in mental health sessions</p>
<div class="position-relative mx-auto" style="max-width: 400px;">
<input class="form-control border-0 w-100 py-3 ps-4 pe-5" type="text" placeholder="Your email">
<button type="button" class="btn btn-primary py-2 position-absolute top-0 end-0 mt-2 me-2">SignUp</button>
</div>
</div>
</div>
</div>
<div class="container">
<div class="copyright">
<div class="row">
<div class="col-md-6 text-center text-md-start mb-3 mb-md-0">
© <a class="border-bottom" href="index.html">SocialSync</a>, All Right Reserved.
</div>
<div class="col-md-6 text-center text-md-end">
<!--/*** This template is free as long as you keep the footer author’s credit link/attribution link/backlink. If you'd like to use the template without the footer author’s credit link/attribution link/backlink, you can purchase the Credit Removal License from "https://htmlcodex.com/credit-removal". Thank you for your support. ***/-->
Designed By <a class="border-bottom" href="https://htmlcodex.com">HTML Codex</a>
</div>
</div>
</div>
</div>
</div>
<!-- Footer End -->
<!-- Back to Top -->
<a href="#" class="btn btn-lg btn-primary btn-lg-square rounded-circle back-to-top"><i class="bi bi-arrow-up"></i></a>
<!-- JavaScript Libraries -->
<script src="https://code.jquery.com/jquery-3.4.1.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0/dist/js/bootstrap.bundle.min.js"></script>
<script src="lib/wow/wow.min.js"></script>
<script src="lib/easing/easing.min.js"></script>
<script src="lib/waypoints/waypoints.min.js"></script>
<script src="lib/counterup/counterup.min.js"></script>
<script src="lib/owlcarousel/owl.carousel.min.js"></script>
<script src="lib/tempusdominus/js/moment.min.js"></script>
<script src="lib/tempusdominus/js/moment-timezone.min.js"></script>
<script src="lib/tempusdominus/js/tempusdominus-bootstrap-4.min.js"></script>
<!-- Template Javascript -->
<script src="js/main.js"></script>
<!-- custom cursor code -->
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<script src="lib/wow/customcursor.js"></script>
<script> window.chtlConfig = { chatbotId: "6729786373" } </script>
<script async data-id="6729786373" id="chatling-embed-script" type="text/javascript" src="https://chatling.ai/js/embed.js"></script>
<style>
:root {
--background-color-light: #ffffff;
--background-color-dark: #121212;
--text-color-light: #000000;
--text-color-dark: #ffffff;
--primary-color-light: #18131e;
--primary-color-dark: #d1830e;
}
body {
background-color: var(--background-color-light);
color: var(--text-color-light);
font-family: Arial, sans-serif;
transition: background-color 0.3s, color 0.3s;
}
body.darkmode {
background-color: var(--background-color-dark);
color: var(--text-color-dark);
}
#theme-switch {
position: fixed;
top: 65px;
right: 20px;
background: none;
border: 20px;
cursor: pointer;
padding: 10px;
border-radius: 90%;
transition: background-color 0.3s;
margin-top: 580px;
margin-right: 1410px;
z-index: 1000;
}
#theme-switch:hover {
background-color: rgba(151, 8, 8, 0.1);
transform: scale(1);
}
#theme-icon {
fill: var(--primary-color-light);
transition: fill 0.3s;
width: 60px;
height: 60px;
}
body.darkmode #theme-icon {
fill: var(--primary-color-dark);
}
#theme-icon #dark-icon {
display: none;
}
body.darkmode #theme-icon #light-icon {
display: none;
}
body.darkmode #theme-icon #dark-icon {
display: block;
}
</style>
<script>
document.addEventListener('DOMContentLoaded', () => {
const themeSwitch = document.getElementById('theme-switch');
const darkmode = localStorage.getItem('darkmode');
// Apply dark mode if the user has previously selected it
if (darkmode === 'active') {
document.body.classList.add('darkmode');
}
// Toggle dark mode on button click
themeSwitch.addEventListener('click', () => {
document.body.classList.toggle('darkmode');
const isDarkMode = document.body.classList.contains('darkmode');
localStorage.setItem('darkmode', isDarkMode ? 'active' : 'inactive');
});
});
</script>
</body>
</html>