-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhealth.html
More file actions
78 lines (77 loc) · 2.91 KB
/
health.html
File metadata and controls
78 lines (77 loc) · 2.91 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Health Care Tips</title>
<link rel="stylesheet" href="health.css">
</head>
<body>
<!-- Navigation Bar -->
<nav class="navbar">
<div class="nav-logo">MedEase</div>
<ul class="nav-links">
<li><a href="home.html">Home</a></li>
<li><a href="aboutus.html">About Us</a></li>
<li><a href="categories.html">Medical Specialties</a></li>
<li><a href="appointment.php">Appointments</a></li>
<li><a href="health.html">Health Care Tips</a></li>
<li><a href="emergency.html">Emergency</a></li>
<li><a href="contactUs.html">Contact Us</a></li>
</ul>
</nav>
<div class="container">
<header>
<h1>HEALTH CARE TIPS</h1>
</header>
<section class="latest-health-tips">
<h2>Latest Health Tips</h2>
<div class="tips">
<div class="tip">
<img src="images\water.jpeg" alt="Stay Hydrated" class="responsive-image">
<p>How to Stay Hydrated During Summer</p>
<a href="#">See More ></a>
</div>
<div class="tip">
<img src="images\mental.jpeg" alt="Exercise for Mental Health" class="responsive-image">
<p>The Benefits of Regular Exercise for Mental Health</p>
<a href="#">See More ></a>
</div>
<div class="tip">
<img src="images\snacks.jpeg" alt="Healthy Snacks" class="responsive-image">
<p>Healthy Snack Ideas for Busy Professionals</p>
<a href="#">See More ></a>
</div>
</div>
</section>
<section class="top-health-tips">
<h2>Top Health Tips</h2>
<ul>
<li><a href="#">10 Ways to Boost Your Immune System</a></li>
<li><a href="#">Healthy Eating: Tips for a Balanced Diet</a></li>
<li><a href="#">Mental Health: How to Manage Stress</a></li>
</ul>
</section>
<section class="trending-now">
<h2>Trending Now</h2>
<div class="trend">
<div class="heart-health">
<h3>Heart Health</h3>
<p>Maintain a healthy heart with these practical tips.</p>
<a href="#">Read More ></a>
</div>
</div>
<div class="trend">
<div class="weight-loss">
<h3>Weight Loss</h3>
<p>Achieve your weight loss goals with expert advice.</p>
<a href="#">Read More ></a>
</div>
</div>
</section>
<footer>
<a href="#">GO BACK</a>
</footer>
</div>
</body>
</html>