-
Notifications
You must be signed in to change notification settings - Fork 0
/
bruises.html
63 lines (56 loc) · 2.16 KB
/
bruises.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
<!DOCTYPE html>
<html lang="en" >
<head>
<meta charset="UTF-8">
<title>Bruises</title>
<link rel="stylesheet" href="styles.css"></link>
</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 ////////////////////////////////////////////////////// -->
<h1 class= "centered">All About Bruises</h1>
<p >
According to Mayo Clinic,use these steps to treat bruises.
<br></br>
You can enhance bruise healing with a few simple techniques. Remember RICE, for rest, ice, compress and elevate:
<br>
1. Rest the bruised area, if possible.
<br>
2. Ice the bruise with an ice pack wrapped in a towel. Leave it in place for 10 to 20 minutes. Repeat several times a day for a day or two as needed.
<br>
3. Compress the bruised area if it is swelling, using an elastic bandage. Don't make it too tight.
<br>
4. Elevate the injured area.
</p>
<img class="imagecenter" id="bruisesimg" src="bruises.png" alt="">
<h2>Click below for more information</h2>
<a href = "https://www.cdc.gov/features/handwashing/index.html">Center for Disease Control Prevention</a>
<br></br>
<a href = "https://www.wikihow.com/Get-Rid-of-Bruises-Fast">Wiki How</a>
<script src="dropdown.js"></script>
</body>
</html>