-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathservices.html
34 lines (33 loc) · 1.18 KB
/
services.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styles.css">
<link href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css" rel="stylesheet">
<title>Document</title>
</head>
<body>
<!-- Services Page -->
<div id="services">
<h1>Our Services</h1>
<div class="service-container">
<div class="service-box">
<img src="online.png" alt="Consultation">
<h2>Health Monitoring </h2>
<p>continuously monitoring your health.</p>
</div>
<div class="service-box">
<img src="medicine.png" alt="Prescription">
<h2>Medicine Prescription</h2>
<p>Get your medicines prescribed by our experts.</p>
</div>
<div class="service-box">
<img src="customer-care.png" alt="Support">
<h2>24/7 Customer Support</h2>
<p>We are here to help you anytime.</p>
</div>
</div>
</div>
</body>
</html>