-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathservices.html
More file actions
172 lines (126 loc) · 4.68 KB
/
services.html
File metadata and controls
172 lines (126 loc) · 4.68 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
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
165
166
167
168
169
170
171
172
<!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>
<style>
.services_container_1{
text-align: center;
font-family: "Lucida Sans", sans-serif;
background-color: #429f68;
padding: 30px;
height: 800px;
}
.services_container_2{
text-align: left;
/* max-height: 960px; */
}
.services_book_app{
float: left;
width: 40%;
background-color: #f2f2f2;
padding: 25px;
/* max-width: 960px; */
text-wrap: balance;
margin-top: 20px;
height: 250px;
text-align: left;
}
.services_book_lab{
float: right;
width: 40%;
background-color: #f2f2f2;
padding: 25px;
/* max-width: 960px; */
text-wrap: balance;
height: 250px;
margin-top: 20px;
}
/* .clr {
clear: both;
} */
.services_search_hosp{
float: left;
width: 40%;
background-color: #f2f2f2;
padding: 25px;
/* max-width: 960px; */
text-wrap: balance;
margin-top: 20px;
height: 250px;
}
.services_search_lab{
float: right;
width: 40%;
background-color: #f2f2f2;
padding: 25px;
/* max-width: 960px; */
text-wrap: balance;
height: 250px;
margin-top: 20px;
}
.services_click_here{
color: black;
text-align: center;
background-color: rgb(203, 219, 203);
padding: 15px;
/* margin: 2px; */
width: 100px;
border-radius: 25px;
}
a:hover {
text-decoration: none;
/* color: rgb(54, 55, 48); */
background-color: rgb(94, 147, 94);
padding: 11px;
border-radius: 25px;
}
a{
text-decoration: none;
color: black;
}
</style>
</head>
<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>
</body>
</html>