-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy paththings.html
69 lines (63 loc) · 1.78 KB
/
things.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
<!DOCTYPE html>
<html>
<head>
<title>Things to Avoid</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
body {
margin: 0;
font-family: Arial, Helvetica, sans-serif;
background-color: yellow;
}
.topnav {
overflow: hidden;
background-color: #333;
}
.topnav a {
float: left;
color: #f2f2f2;
text-align: center;
padding: 14px 16px;
text-decoration: none;
font-size: 17px;
}
.topnav a:hover {
background-color: #ddd;
color: black;
}
.topnav a.active {
background-color: #04AA6D;
color: white;
}
</style>
</head>
<body>
<div class="topnav">
<a href="index.html">Home</a>
<a href="whatis.html">What is G6PDD?</a>
<a class="active" href="things.html">Things to avoid.</a>
<a href="qa.html">Q&A</a>
<a href="source.html">Sources</a>
</div>
<div style="padding-left:16px">
<h2>Some things to avoid with G6PDD.</h2>
<p>When you have G6PD, there are numerous "Triggers" that you have to avoid to stay safe from hemolysis. So, below, here are a few of the things commonly associated with hemolysis. (Trigger List from Source 3)</p>
</div>
<h2> Drugs: </h2>
<h4>Dapsone</h4>
<p> An antibiotic used to treat various skin conditions. </p>
<h4> Methylene Blue </h4>
<p> Commonly used as a dye in certain medical procedures. </p>
<h4> Acetaminophen </h4>
<p> A drug most commonly used as a painkiller. </p>
<h4> Aspirin </h4>
<p> An anti-inflammatory drug used to treat mild to moderate pain, inflammation or arthritis. </p>
<h4> Anti-Malarials </h4>
<h2>Products and Foods</h2>
<p>Moth Balls, and any other things that contain Napthelene.</p>
<p>Fava Beans, as well as all other Legumes.</p>
<p>Pumpkin</p>
<p>Un-ripe peaches</p>
<h1>*THERE ARE MANY MORE THINGS NOT COVERED IN THIS LIST! PLEASE DO FURTHER RESEARCH IF YOU HAVE G6PDD!*</h1>
</body>
</html>