forked from Winnie7703/TechSysters
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathservices.html
164 lines (131 loc) · 5.22 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
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
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>StayHeldy Services</title>
<link rel="stylesheet" href="./css/services.css">
<!-- <link rel="stylesheet" href="./css/style.css"> -->
<link rel="stylesheet" href="./css/services.css">
<script
src="https://code.jquery.com/jquery-3.2.1.min.js"
integrity="sha256-hwg4gsxgFZhOsEEamdOYGBf13FyQuiTwlAQgxVSNgt4="
crossorigin="anonymous"></script>
</head>
<body>
<section class="navigation">
<div class="nav-container">
<div class="brand">
<a href="#!">
<img class="brand-icon" src="./images/logo.png" alt=" Logo">
</a>
<h1>StayHeldy</h1>
</div>
<nav>
<div class="nav-mobile">
<a id="nav-toggle" href="#!"><span></span></a>
</div>
<ul class="nav-list">
<li>
<a href="#!">Home</a>
</li>
<li>
<a href="#!">About</a>
</li>
<li>
<a href="#!">Services</a>
</li>
<li>
<a href="#!">Health Tips</a>
<ul class="nav-dropdown">
<li>
<a href="#!">Articles</a>
</li>
<li>
<a href="#!">Blog</a>
</li>
<li>
<a href="#!">Track your Health</a>
</li>
</ul>
</li>
<li>
<a class="disabled" href="#!"><button class="subscribe-btn">Subscribe</button></a>
</li>
<li>
<a href="#!">
<img class="search-icon" src="./images/search icon 3.jpeg" alt="search icon">
</a>
</li>
</ul>
</nav>
</div>
</section>
<script src="./index.js"></script>
</body>
<body>
<div class="services_container_1" >
<!-- <div class="services_header"> -->
<h1>Our Services</h1>
<h1>At StayHeldy.com, we offer a variety of services</h1>
<!-- </div> -->
<div class="services_container_2">
<div class="services_book_app">
<h4>Need to see a doctor?</h4>
<p>We will help you book an E-appointment <br> with the right doctor.
<br><br>Let's help you find them! <br><br><br></p>
<div class="services_click_here"> <a href="#">Click here </a>
</div>
</div>
<div class="services_book_lab">
<h4>Need to book for a laboratory test?</h4>
<p>We will help you also E-book a lab test appointment with the right laboratory.
<br><br>Let's help you find it! <br> <br></p>
<div class="services_click_here"> <a href="#">Click here </a>
</div>
</div>
<!-- <div class="clr"></div> -->
<div class="services_search_hosp">
<h4>Need to find a hospital around your locality?</h4>
<p> With StayHeldy.com, we will help you find a hospital or clinic around you.
<br><br>Let's help you find it! <br> <br>
</p>
<div class="services_click_here"> <a href="#">Click here </a>
</div>
</div>
<div class="services_search_lab">
<h4>Need to find a laboratory around your locality?</h4>
<p>We will help you also find a laboratory around you, wherever you are.
<br><br> Let's help you find it! <br> <br>
</p>
<div class="services_click_here"> <a href="#">Click here </a>
</div>
</div>
</div>
</div>
<div><p style="height: 700px;"> </p></div>
<!--FOOTER-->
<footer>
<div class="footer">
<div class="row">
<a href="#"><i class="fa fa-facebook"></i></a>
<a href="#"><i class="fa fa-instagram"></i></a>
<a href="#"><i class="fa fa-youtube"></i></a>
<a href="#"><i class="fa fa-twitter"></i></a>
</div>
<div class="row">
<ul>
<li><a href="#">Contact us</a></li>
<li><a href="#">Services</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Terms & Conditions</a></li>
<li><a href="#">Subscribe</a></li>
</ul>
</div>
<div class="row">
Copyright © 2023 <b>StayHeldy</b> - All rights reserved
</div>
</div>
</footer>
</body>
</html>