-
Notifications
You must be signed in to change notification settings - Fork 0
/
diabetes.html
113 lines (109 loc) · 3.51 KB
/
diabetes.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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Diabetes Information</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: thistle;
}
h2{
font-family: Copperplate, Papyrus, fantasy;
}
p{
font-family: "Lucida Console", "Courier New", monospace;
}
li{
font-family: "Lucida Console", "Courier New", monospace;
}
header {
background-color: salmon;
color: #fff;
padding: 10px;
text-align: center;
background-image: url("background_common_medications.avif");
}
nav {
background-color: #f8f9fa;
padding: 10px;
text-align: center;
}
nav a {
text-decoration: none;
color: #333;
padding: 10px;
}
nav a:hover {
background-color: thistle;
color: #fff;
}
section {
padding: 20px;
}
footer {
background-color: #333;
color: #fff;
text-align: center;
padding: 10px;
position: fixed;
width: 100%;
bottom: 0;
}
</style>
</head>
<body>
<header>
<h1>Diabetes Information</h1>
</header>
<nav>
<a href="#whatIsDiabetes">What is Diabetes?</a>
<a href="#types">Types of Diabetes</a>
<a href="#symptoms">Symptoms</a>
<a href="#prevention">Prevention</a>
<a href="#treatment">Treatment</a>
</nav>
<center> <img src="diabetes_in.jpeg"></center>
<section id="whatIsDiabetes">
<h2>What is Diabetes?</h2>
<p>Diabetes is a chronic disease that occurs when the pancreas is no longer able to make insulin, or when the body cannot make good use of the insulin it produces.</p>
</section>
<section id="types">
<h2>Types of Diabetes</h2>
<ul>
<li>Type 1 Diabetes</li>
<li>Type 2 Diabetes</li>
<li>Gestational Diabetes</li>
</ul>
</section>
<section id="symptoms">
<h2>Symptoms</h2>
<ul>
<li>Increased thirst</li>
<li>Frequent urination</li>
<li>Extreme hunger</li>
<li>Unexplained weight loss</li>
<li>Fatigue</li>
<li>Blurred vision</li>
</ul>
</section>
<section id="prevention">
<h2>Prevention</h2>
<p>While there is no known way to prevent Type 1 diabetes, you can prevent or delay Type 2 diabetes by maintaining a healthy weight, eating a balanced diet, and exercising regularly.</p>
</section>
<section id="treatment">
<h2>Treatment</h2>
<p>Treatment for diabetes aims to keep blood glucose levels as close to normal as possible. This involves lifestyle modifications, medication, and sometimes insulin therapy.</p>
</section>
<br><br><br><br>
<center><a style="text-align:center" href="index.html" class="btn btn-primary">Return to Home</a></center>
<br><br><br><br>
<br><br><br><br>
<footer>
<p>© 2024 Diabetes Information. All rights reserved.</p>
</footer>
</body>
</html>