-
Notifications
You must be signed in to change notification settings - Fork 0
/
content_landing.html
111 lines (98 loc) · 4.54 KB
/
content_landing.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>ReachOut Consel</title>
<link rel="stylesheet" href="css/content_page.css">
<link rel="stylesheet" href="css/styles.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
</head>
<body>
<body>
<!-- header beginning -->
<nav id="nav">
<!-- <h1 id="title">Reachout Consel</h1> -->
<h1 id="title"><img class="logo" src="img/logo_final.png" alt=""></h1>
<ul id="menu_links">
<li><a href="index.html"> HOME</a></li>
<li><a href="content_landing.html"> TOPICS</a></li>
<li><a href="videos.html"> RESOURCES</a></li>
<li><a href="form.html"> TALK TO US </a></li>
<li> <a href="about.html"> ABOUT</a></li>
</ul>
<a href="javascript:void(0)" onclick="showMenu()"
><img id="menu_icon" src="img/hamburger_icon.png" alt="menu icon"
/></a>
</nav>
<!-- <div class="banner_section" id="banner_section">
<div class="introduction">
<div id="heading">
<h4>Are you feeling overwhelmed by life challenges?</h4><br/>
<p>
ReachOut Consel Provides resources to help you get through it
all.Find solutions to common problems we go through.You are not
alone. Reach out and talk to a counsellor today!
</p>
</div>
</div>
</div> -->
<!-- Header ending -->
<div class="sidebar">
<a href="content.html" onclick="displayContent(this.id)" id="suicidal_ideation" target="display_iframe">Suicidal Ideation</a>
<a href="content.html" onclick="displayContent(this.id)" id="addiction" target="display_iframe">Addiction</a>
<a href="content.html" onclick="displayContent(this.id)" id="loss" target="display_iframe">Loss</a>
<a href="content.html" onclick="displayContent(this.id)" id="anxiety" target="display_iframe">Anxiety</a>
<a href="content.html" onclick="displayContent(this.id)" id="relationship" target="display_iframe">Relationship</a>
<a href="content.html" onclick="displayContent(this.id)" id="depression" target="display_iframe">Depression</a>
</div>
<div class="content" id="first_div">
<iframe src="content.html" frameborder="1" name="display_iframe" id="display_iframe" height="700vh" onload="defaultIframe()"></iframe>
</div>
<div class="footer_section">
<!-- Grouping for column styling -->
<footer>
<div class="column">
<img id="logo" src="img/logo_final.png" alt="Logo">
<!-- Adding links to more information on counselling practices -->
<div class="links">
<h3>Relatable links</h3>
<p><a href="https://www.therapybyshannon.com/blog-2/2019/1/14/7-things-counseling-should-and-shouldnt-be" target="blank"> 7 Things Counseling shouls and shouldn't be.</a></p>
<p><a href="https://www.google.com/search?sxsrf=AOaemvLb1eh-Wg1YTnO0ukP4k4fwOP0pxA:1633944253437&q=5+facts+about+counseling&sa=X&ved=2ahUKEwiZ3bvWhMLzAhXT8OAKHRNUDLsQ1QJ6BAgtEAE" target="blank">5 Facts about counseling.</a></p>
<p><a href="https://medcraveonline.com/JPCPY/the-effect-of-psychological-counseling-on-mental-health.html" target="blank">Effect of Counselling on mental health.</a></p>
</div>
<!-- Adding quotes -->
<div class="Quote">
<q> <em> If we have no peace, it is because we have forgotten that we belong to each other.</q><p>― Mother Teresa. </em></p>
</div>
</div>
<!-- Grouping together for styling -->
<div class="column2">
<div class="info">
<h3>Information</h3>
<p><a href="#About Us">About Us</a></p>
<p><a href="#Contact Us">Contact Us</a></p>
<p> <a href="Support Us"> Support Us</a></p>
</div>
<div class="contacts">
<h3>Contact Us</h3>
<p>+02234567778</p>
<p><a href="[email protected]">[email protected]</a></p>
</div>
<div class="socials">
<a href="twitter.com"><img src="https://cliply.co/wp-content/uploads/2021/09/CLIPLY_372109260_TWITTER_LOGO_400.gif" alt=" twitter logo"></a>
<a href="whatsapp.com"><img src="https://cliply.co/wp-content/uploads/2021/08/372108180_WHATSAPP_ICON_400.gif" alt="whatsapp logo"></a>
</div>
</div>
<!-- Last part of the footer -->
<div class="copyrights">
<p>Copyright © 2021 | All rights reserved | <a href="https://en.wikipedia.org/wiki/Online_counseling">License</a> | <a href="https://www.onlinetherapy.com/terms-and-conditions/">Terms and Services.</a></p>
</div>
</footer>
</div>
<script src="js/index.js"></script>
</body>
<script src="js/content.js">
</script>
</html>