-
Notifications
You must be signed in to change notification settings - Fork 1
/
Infopage.html
56 lines (50 loc) · 1.62 KB
/
Infopage.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
<!DOCTYPE html>
<html class = "Infopage" lang = "en">
<!-- the learn more page -->
<head>
<meta charset="utf-8"/>
<link rel="stylesheet" href="site.css">
<link href="https://fonts.googleapis.com/css?family=Comfortaa%7CHind%7CLobster+Two%7COpen+Sans+Condensed:300" rel="stylesheet">
<link rel="icon" href="Images/compass-37840_1280.png">
<title>Compass Info</title>
</head>
<body>
<!-- the navigation sidebar -->
<div class="sidenav">
<a href="index.html">Home</a>
<a href="Infopage.html">Learn more</a>
<a href="stimpage.html"> Stims</a>
<a href="supportpage.html">Support</a>
<a href="comment_page.html"> Comments</a>
<a href="Aboutpage.html">About</a>
</div>
<!-- the main text of the page -->
<div class = "bodytext">
<h1>Information</h1>
<div class = "homeparagraph">
<!-- an embedded video about anxiety -->
<div class = "video">
<iframe class = "vid"
src="https://www.youtube.com/embed/Z_jkNmj5S0s" allowfullscreen>
</iframe>
</div>
<p> Types of anxiety: </p>
<ul>
<li>Social anxiety - the fear of social situations</li>
<li>GAD - extreme worrying </li>
<li>OCD - repetitive behaviors</li>
</ul>
<p> Symptoms of anxiety include: </p>
<ul>
<li>Muscle tension</li>
<li>Headaches</li>
<li>Insomnia</li>
<li>Loss of appetite</li>
<li>Panic attacks</li>
<li>Nausea</li>
<li>Increase in heart rate/ breathing</li>
</ul>
</div>
</div>
</body>
</html>