-
Notifications
You must be signed in to change notification settings - Fork 0
/
stomach.html
130 lines (123 loc) · 5.68 KB
/
stomach.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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
<!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('https://img.freepik.com/free-vector/watercolor-medical-background_23-2151347360.jpg');
}
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="#stomach">Stomach?</a>
<a href="#function">Functioning</a>
<a href="#parts">Parts Of Stomach Anatomy</a>
<a href="#condition&disorder">Conditions And Disorders</a>
<a href="#care">Care</a>
</nav>
<center> <img src="stomach_in.webp"></center>
<section id="stomach">
<h2>What is the stomach?</h2>
<p>The stomach is a J-shaped organ that digests food. It produces enzymes (substances that create chemical reactions) and acids (digestive juices). This mix of enzymes and digestive juices breaks down food so it can pass to your small intestine.</p>
<p> Your stomach is part of the gastrointestinal (GI) tract. The GI tract is a long tube that starts at your mouth. It runs to your anus, where stool (poop) leaves your body. The GI tract is a key part of your digestive system.</p>
</section>
<section id="function">
<h2>What is the stomach’s function?</h2>
<ul>Your stomach’s purpose is to digest food and send it to your small intestine. It has three functions:<br>
<li>Temporarily store food.</li>
<li>Contract and relax to mix and break down food.</li>
<li>Produce enzymes and other specialized cells to digest food.</li></ul>
</section>
<section id="parts">
<h2>What are the parts of the stomach’s anatomy?</h2>
<ul>Your stomach has five distinct sections:<br>
<li>The cardia is the top part of your stomach. It contains the cardiac sphincter, which prevents food from traveling back up your esophagus.</li>
<li>The fundus is a rounded section next to the cardia. It's below your diaphragm (the dome-shaped muscle that helps you breathe).</li>
<li>The body (corpus) is the largest section of your stomach. In the body, your stomach contracts and begins to mix food.</li>
<li>The antrum lies below the body. It holds food until your stomach is ready to send it to your small intestine.</li>
<li>The pylorus is the bottom part of your stomach. It includes the pyloric sphincter. This ring of tissue controls when and how your stomach contents move to your small intestine.</li>
</ul>
</section>
<section id="condition&disorder">
<h2>Conditions and Disorders</h2>
<p>Gastrointestinal diseases may affect your stomach. You may have gastrointestinal symptoms only under specific circumstances, such as getting heartburn during pregnancy. Or you may have a chronic (long-lasting) condition.</p>
<ol>Common conditions that affect your stomach include:<br>
<li>Gastric ulcers: Erosion in your stomach’s lining that can lead to pain and bleeding.</li>
<li>Gastritis: Stomach inflammation.</li>
<li>Gastroesophageal reflux disease (GERD): When stomach contents travel up to your esophagus, causing heartburn or coughing.</li>
<li>Gastroparesis: Nerve damage that affects your stomach’s muscle contractions.</li>
<li>Indigestion (dyspepsia): Discomfort, pain or burning in your upper stomach.</li>
<li>Peptic ulcer disease: Ulcers (sores) in either your stomach or the first portion of your small intestine (duodenum).</li>
<li>Stomach cancer: When cancerous cells grow uncontrollably in your stomach</li></ol>
</section>
<section id="care">
<h2>Care</h2>
<p>You can make lifestyle changes to keep your stomach and digestive system healthy. You may:</p>
<p>Drink alcohol only in moderation.
Drink at least 50 ounces of water daily, depending on your activity level and size.
Eat 25 to 35 grams of fiber daily, depending on your age and sex.
Exercise regularly.
Limit your intake of processed foods.
Manage stress with healthy coping strategies, such as meditation.
Quit smoking or using tobacco products.</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 Stomach Care Information. All rights reserved.</p>
</footer>
</body>
</html>