-
Notifications
You must be signed in to change notification settings - Fork 0
/
hygiene.html
55 lines (45 loc) · 2.22 KB
/
hygiene.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
<!DOCTYPE html>
<html>
<head>
<title>Welcome to Health Helper</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<!--HEADER ////////////////////////////////////////////////////// -->
<div id= "header">
<center>
<img id = "logo" src="healthhelperlogo.png" alt="Health Helper" hspace="50">
</center>
<div id="menu">
<ul id="nav">
<li><a href="index.html">Home</a></li>
<li><a href="illnessinformation.html">Illness Information</a></li>
<!-- <li><a href="resources.html">Resources</a></li> -->
<div class="dropdown">
<button onclick="myFunction()" class="dropbtn">Resources</button>
<div id="myDropdown" class="dropdown-content">
<a href="finddoctor.html">Find a Doctor</a>
<a href="resources.html">Find a Hospital</a>
</div>
</div>
<li><a href="generalhealth.html">General Health</a></li>
<!--
<li><a href="">Find a Doctor</a></li> -->
<!-- <a href=""><li>Gallery</li></a>
<a href=""><li>Contact</li></a> -->
</ul>
</div>
</div>
<!--HEADER ////////////////////////////////////////////////////// -->
<br></br>
<h1 id = "hygiene">Hygiene</h1>
<img id ="hygienepic" src="hygiene1.png" alt="hygiene">
<h2 id ="info">Information</h2>
<p id = "hygieneparagraph">Good personal hygiene is important to maintain good health and prevent the spread of diseases. Good hygiene habits includes showering regulary, burshing your teeth at least once a day, changing into clean clothes, and covering your mouth when sneezing or coughing. </p>
<h2 id = "links"> Click on these links for more information</h2>
<a href="https://www.betterhealth.vic.gov.au/health/conditionsandtreatments/personal-hygiene">BetterHealth</a>
<br></br>
<a href="https://www.cdc.gov/healthywater/hygiene/index.html">Centers for Disease Control and Prevention</a>
<script src="dropdown.js" charset="utf-8"></script>
</body>
</html>