rcajegas commited on
Commit
447cdf5
1 Parent(s): 0d1c8c8

Update index.html

Browse files
Files changed (1) hide show
  1. index.html +59 -16
index.html CHANGED
@@ -1,16 +1,59 @@
1
- /* Set background color and 3D effect */
2
- body {
3
- background: linear-gradient(to right top, #ff9800, #ffc107, #ffeb3b, #cddc39, #8bc34a);
4
- perspective: 50rem;
5
- transform-style: preserve-3d;
6
- }
7
-
8
- /* Add GIF to upper right corner */
9
- #sad-gif {
10
- position: fixed;
11
- top: 0;
12
- right: 0;
13
- height: 5rem;
14
- width: 5rem;
15
- transform: translateZ(3rem) rotateY(-180deg);
16
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>Philippine Hospital Issues</title>
5
+ <style>
6
+ body {
7
+ background-color: #f2f2f2;
8
+ font-family: Arial, sans-serif;
9
+ font-size: 16px;
10
+ line-height: 1.5;
11
+ margin: 0;
12
+ padding: 0;
13
+ }
14
+ h1 {
15
+ color: #0099cc;
16
+ font-size: 36px;
17
+ font-weight: bold;
18
+ margin: 50px 0 30px;
19
+ text-align: center;
20
+ }
21
+ h2 {
22
+ color: #333;
23
+ font-size: 28px;
24
+ font-weight: bold;
25
+ margin: 50px 0 30px;
26
+ }
27
+ .container {
28
+ margin: 0 auto;
29
+ max-width: 960px;
30
+ padding: 0 20px;
31
+ }
32
+ ul {
33
+ list-style: disc;
34
+ margin: 30px 0;
35
+ padding-left: 20px;
36
+ }
37
+ li {
38
+ margin-bottom: 10px;
39
+ }
40
+ </style>
41
+ </head>
42
+ <body>
43
+ <div class="container">
44
+ <h1>Philippine Hospital Issues</h1>
45
+ <h2>Underfunding</h2>
46
+ <p>Many hospitals in the Philippines are underfunded, which means they often lack the necessary resources to provide quality care. This can result in a shortage of medical supplies, equipment, and staff, which can compromise patient care.</p>
47
+ <h2>Overcrowding</h2>
48
+ <p>Hospitals in the Philippines are often overcrowded, which can lead to a lack of beds and longer wait times for patients. This can also increase the risk of infections spreading and result in poorer patient outcomes.</p>
49
+ <h2>Inadequate Staffing</h2>
50
+ <p>There is a shortage of healthcare professionals in the Philippines, which can put a strain on hospitals. Nurses and doctors are often overworked, leading to burnout and a high turnover rate.</p>
51
+ <h2>Poor Infrastructure</h2>
52
+ <p>Many hospitals in the Philippines are located in older buildings with outdated facilities. This can lead to problems with sanitation, safety, and accessibility for patients.</p>
53
+ <h2>Limited Access to Healthcare</h2>
54
+ <p>Many people in the Philippines do not have access to healthcare, particularly those living in rural areas. This can result in delayed or inadequate treatment, which can have serious consequences for patients.</p>
55
+ <h2>High Healthcare Costs</h2>
56
+ <p>Healthcare costs in the Philippines are high, which can make it difficult for some people to access the care they need. This can result in people delaying or avoiding medical treatment, which can have serious consequences for their health.</p>
57
+ </div>
58
+ </body>
59
+ </html>