-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathservices.html
83 lines (65 loc) · 2.9 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Services</title>
<!-- font awesome cdn link -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css">
<script src="https://code.jquery.com/jquery-3.6.0.js"
integrity="sha256-H+K7U5CnXl1h5ywQfKtSj8PCmoN9aaq30gDh27Xc0jk=" crossorigin="anonymous"></script>
<!-- custom css file link -->
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<div id="nav-placeholder">
</div>
<script>
$(function () {
$("#nav-placeholder").load("nav.html");
});
</script>
<section class="services" id="services">
<h1 class="heading"> our <span>services</span> </h1>
<div class="box-container">
<div class="box">
<i class="fas fa-notes-medical"></i>
<h3>free checkups</h3>
<p>Lorem ipsum dolor sit amet consectetur, adipisicing elit. Ad, omnis.</p>
<a href="#" class="btn"> learn more <span class="fas fa-chevron-right"></span> </a>
</div>
<div class="box">
<i class="fas fa-ambulance"></i>
<h3>24/7 ambulance</h3>
<p>Lorem ipsum dolor sit amet consectetur, adipisicing elit. Ad, omnis.</p>
<a href="#" class="btn"> learn more <span class="fas fa-chevron-right"></span> </a>
</div>
<div class="box">
<i class="fas fa-user-md"></i>
<h3>expert doctors</h3>
<p>Lorem ipsum dolor sit amet consectetur, adipisicing elit. Ad, omnis.</p>
<a href="#" class="btn"> learn more <span class="fas fa-chevron-right"></span> </a>
</div>
<div class="box">
<i class="fas fa-pills"></i>
<h3>medicines</h3>
<p>Lorem ipsum dolor sit amet consectetur, adipisicing elit. Ad, omnis.</p>
<a href="#" class="btn"> learn more <span class="fas fa-chevron-right"></span> </a>
</div>
<div class="box">
<i class="fas fa-procedures"></i>
<h3>bed facility</h3>
<p>Lorem ipsum dolor sit amet consectetur, adipisicing elit. Ad, omnis.</p>
<a href="#" class="btn"> learn more <span class="fas fa-chevron-right"></span> </a>
</div>
<div class="box">
<i class="fas fa-heartbeat"></i>
<h3>total care</h3>
<p>Lorem ipsum dolor sit amet consectetur, adipisicing elit. Ad, omnis.</p>
<a href="#" class="btn"> learn more <span class="fas fa-chevron-right"></span> </a>
</div>
</div>
</section>
</body>
</html>