-
Notifications
You must be signed in to change notification settings - Fork 0
/
mymynd.html
106 lines (100 loc) · 3.65 KB
/
mymynd.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
<!DOCTYPE html>
<html>
<head>
<title>MYND Melbourne</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Montserrat">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<style>
body, h1,h2,h3,h4,h5,h6 {font-family: "Montserrat", sans-serif}
.w3-row-padding img {margin-bottom: 12px}
/* Set the width of the sidebar to 120px */
.w3-sidebar, w3-sidebar:hover {
width: 120px;
background: #98cdcc;
}
/* Add a left margin to the "page content" that matches the width of the sidebar (120px) */
#main {margin-left: 120px}
.w3-teal, .w3-hover-teal:hover, .w3-content {
color: #fff!important;
background-color: #28aaa4!important;
}
.hyper-link {
color:#fff!important;
font-size: 20px!important;
}
.center-image {
display: block;
margin: auto;
}
/* @media only screen and (max-width: 600px) {
.footer_col_2 {
text-align: left;
}
} */
/* Remove margins from "page content" on small screens */
@media only screen and (max-width: 600px) {#main {margin-left: 0}}
</style>
</head>
<body class="w3-teal">
<!-- Icon Bar (Sidebar - hidden on small screens) -->
<nav class="w3-sidebar w3-bar-block w3-small w3-hide-small w3-center">
<!-- Avatar image in top left corner -->
<a href="index.html">
<img src="images/mynd-final-logo.png" style="width:100%">
</a>
<a href="crisis.html" class="w3-bar-item w3-button w3-padding-large w3-hover-teal">
<i class="fa fa-exclamation w3-xxlarge"></i>
<p>Crisis Help</p>
</a>
<a href="information.html" class="w3-bar-item w3-button w3-padding-large w3-hover-teal">
<i class="fa fa-cloud w3-xxlarge"></i>
<p>Mental Health Guide</p>
</a>
<a href="mindfulness.html" class="w3-bar-item w3-button w3-padding-large w3-hover-teal">
<i class="fa fa-lightbulb-o w3-xxlarge"></i>
<p>Mindfulness</p>
</a>
<a href="talk.html" class="w3-bar-item w3-button w3-padding-large w3-hover-teal">
<i class="fa fa-commenting-o w3-xxlarge"></i>
<p>Talk With Others</p>
</a>
<a href="experts.html" class="w3-bar-item w3-button w3-padding-large w3-hover-teal">
<i class="fa fa-address-card-o w3-xxlarge"></i>
<p>Experts Near You</p>
</a>
<a href="mymynd.html" class="w3-bar-item w3-button w3-padding-large w3-hover-teal">
<img src="images/my-mynd-final-logo.png" style="width:100%">
<p>My Mynd</p>
</a>
</nav>
<!-- Page Content -->
<div class="w3-padding-large" id="main">
<!-- content -->
<div class="w3-content w3-justify w3-text-grey w3-padding-64">
<img src="images/mynd-final-logo.png" alt="boy" class="w3-image" width="992" height="1108">
<div class="w3-content w3-justify w3-text-grey"><br>
<p><a href="" class="hyper-link">Journal</a></p>
<p><a href="" class="hyper-link">My Mental Health Plan</a></p>
<p><a href="" class="hyper-link">Saved Content</a></p>
</div>
</div>
<!-- Footer -->
<!-- Footer -->
<footer class="w3-content w3-padding-64 w3-text-grey w3-small">
<div class="w3-row">
<div class="w3-col s12 m6 l6 w3-left-align">
Copyright © 2022 Mynd Ltd
</div>
<div class="w3-col s12 m6 l6">
Contact us | Terms of use | Privacy policy
</div>
</div>
<!-- End footer -->
</footer>
<!-- END PAGE CONTENT -->
</div>
</body>
</html>