forked from bfok123/WINFO-Hackathon-2018
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathresources.html
More file actions
42 lines (38 loc) · 1.79 KB
/
resources.html
File metadata and controls
42 lines (38 loc) · 1.79 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
<!DOCTYPE html>
<html>
<head>
<title>Home</title>
<link rel="stylesheet" href="css/homepageStyle.css">
<link href="https://fonts.googleapis.com/css?family=Montserrat:300" rel="stylesheet">
</head>
<body height = "100%" style = "background-image: url(res/happy.jpg); background-size: cover;">
<div id="menu" align="middle" >
<ul class = "header">
<li id="title">Uplift</li>
<li> <a href = "index.html">Log Out</a> </li>
<li> <a href = "resources.html">Resources</a> </li>
<li> <a href = "videos.html">Videos</a> </li>
<li> <a href = "favorites.html">Favorites</a> </li>
<li> <a href = "home_page.html">Home</a> </li>
</ul>
</div>
<div id = "box" style = "background: rgba(255, 255, 255, .8);" align = "left" margin-top = "10px" height = "100%">
<div class = "underline" id = "first">Below is a list of excellent resources to access when you are feeling down and out</div>
<ul>
<li><a href = "https://adaa.org/find-help-for">Anxiety and Depression</a></li>
<li><a href = "https://suicidepreventionlifeline.org/">Suicide Prevention - 1-800-273-8255</a></li>
<li><a href = "http://screening.mentalhealthscreening.org/uwscc">Mental Health Screening</a></li>
</ul>
<div class = "underline">Also try these various exercises to help relieve stress</div>
<ul>
<li>Meditation</li>
<li>Go for a walk</li>
<li>Practice breathing techniques</li>
<li>Exercise (Try out yoga or tai chi!)</li>
<li>Laugh</li>
<li>Spend time with friends or family</li>
</ul>
</div>
</div>
</body>
</html>