-
Notifications
You must be signed in to change notification settings - Fork 0
/
school-directory-search-results.html
279 lines (279 loc) · 19 KB
/
school-directory-search-results.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
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link href="cssreset" rel="stylesheet" type="text/css" />
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css" integrity="sha384-9aIt2nRpC12Uk9gS9baDl411NQApFmC26EwAOH8WgZl5MYYxFfc+NcPb1dKGj7Sk" crossorigin="anonymous" />
<link href="font/dubaifont.css" rel="stylesheet" type="text/css" />
<link href="css/style.css" rel="stylesheet" />
<script src="https://kit.fontawesome.com/cbdf2b0f0e.js" crossorigin="anonymous"></script>
<title>School list results for Dubai school directory</title>
</head>
<body>
<header class="container-fluid nav-header bg-danger position-fixed">
<div class="row">
<div class="col-sm-12 col-md-4 img-logo w-100">
<a href="index.html"><img class="d-block logo-image center-element float-lg-left ml-lg-5 mt-2 pt-md-1 pt-lg-0" src="images/logo.png" alt="logo" /></a>
</div>
<nav class="col-sm-12 col-md-8 w-100 px-md-5">
<ul class="navbar-nav d-flex flex-row justify-content-center center-element mt-md-2 mt-lg-3 justify-content-md-between justify-content-lg-end w-50">
<li class="nav-item">
<a class="nav-link d-lg-flex ml-3 pr-4" href="#"><i class="fas fa-search"></i><span class="d-none d-lg-inline d-xl-inline pl-1">Schools</span></a>
</li>
<li class="nav-item">
<a class="nav-link d-lg-flex pr-4" href="#"><i class="far fa-user"></i><span class="d-none d-lg-inline d-xl-inline pl-1">User</span></a>
</li>
<li class="nav-itemp">
<a class="nav-link d-lg-flex pr-4" href="#"><i class="fas fa-rss"></i><span class="d-none d-lg-inline d-xl-inline pl-1">Blog</span></a>
</li>
<li class="nav-item">
<a class="nav-link d-lg-flex pr-4" href="school-information.html"><i class="fas fa-bars"></i><span class="d-none d-lg-inline d-xl-inline pl-1">More</span></a>
</li>
</ul>
</nav>
</div>
</header>
<main class="jumbotron-fluid filter">
<form class="d-block border pt-4 form-block" action="#" method="POST">
<h6 class="text-center text-dark px-3">Filter by name, state, education system, school level.</h6>
<div class="d-block d-md-flex justify-content-lg-center flex-wrap">
<div class="form-group px-3 mr-md-n1">
<label for="schoolname">SCHOOL NAME:*</label>
<input class="ml-n1 form-control" id="schoolname" type="text" name="schoolname" required />
</div>
<div class="form-group px-3 mx-md-n4">
<label for="sel1">STATE:</label>
<select class="form-control" id="sel1">
<option>Abu Dhabi</option>
<option>Ajman</option>
<option>Dubai</option>
<option>Fujairah</option>
<option>Sharjah</option>
<option>Ras Al kaimah</option>
<option>Um Al Quin</option>
</select>
</div>
<div class="form-group px-3">
<label for="sel2">LEVEL:</label>
<select class="form-control" id="sel2">
<option>Nursery</option>
<option>Primary</option>
<option>High School</option>
<option>College</option>
</select>
</div>
<div class="form-group px-3 mx-md-n4">
<label for="sel3">TYPE:</label>
<select class="form-control" id="sel3">
<option>Technical</option>
<option>Grammar</option>
<option>Industrial</option>
<option>Commercial</option>
</select>
</div>
<div class="form-group px-3 mr-md-n4">
<label for="sel4">GENDER:</label>
<select class="form-control" id="sel4">
<option>Male</option>
<option>Female</option>
<option>Other</option>
</select>
</div>
<div class="form-group px-3 mr-md-n4">
<label for="sel5">CURRICULUM:</label>
<select class="form-control" id="sel5">
<option>American</option>
<option>British</option>
<option>Canadian</option>
<option>Indian</option>
<option>Pakistani</option>
</select>
</div>
<div class="form-group px-3 mr-md-n3">
<label class="invisible" for="sel6">sub</label>
<input class="btn form-control mx-md-0 bg-danger text-white text-center" id="sel6" type="submit" value="SEARCH" />
</div>
<div class="form-group px-2">
<label class="invisible" for="sel7">Sub</label>
<input class="btn reset-button form-control mb-1 mb-md-0 mx-md-0 bg-danger text-white text-center" id="sel7" type="reset" />
</div>
</div>
</form>
</main>
<section>
<div class="sep">
<h4 class="pt-4 text-dark pb-2 text-center">Search Results Found 6 School(s)</h4>
<div class="row">
<div class="col-sm-12 col-md-6 col-lg-4 mt-3">
<article class="sample mx-3 px-2">
<h4 class="color pb-2 pt-3"><i class="fas fa-shield-alt"></i> British American School</h4>
<img class="d-block w-100 img-fluid" src="images/dubai-british-school-students-bag-outstanding-pearson-learner-awards-img-492531.jpg" alt="british" />
<p class="pt-3">
Dubai British School (DBS) has established itself as one of the leading British schools in the region, offering a broad and balanced education to children from all around the world. We are a unique school
that places the wellbeing of our students and the interests of our community at the heart of everything we do.
</p>
<p class="pt-1">
<a class="btn float-right border bg-primary mr-n2" href="school-information.html"><i class="fas fa-user-plus"></i> Apply</a>
</p>
</article>
</div>
<div class="col-sm-12 col-md-6 col-lg-4 mt-3">
<article class="sample mx-3 px-2">
<h4 class="color pb-2 pt-3"><i class="fas fa-shield-alt"></i> Dubai Carmel School</h4>
<img class="d-block w-100 img-fluid" src="images/dubai-british-school-students-bag-outstanding-pearson-learner-awards-img-492531.jpg" alt="british" />
<p class="pt-3">
Dubai British School (DBS) has established itself as one of the leading British schools in the region, offering a broad and balanced education to children from all around the world. We are a unique school
that places the wellbeing of our students and the interests of our community at the heart of everything we do.
</p>
<p class="pt-1">
<a class="btn float-right border bg-primary mr-n2" href="school-information.html"><i class="fas fa-user-plus"></i> Apply</a>
</p>
</article>
</div>
<div class="col-sm-12 col-md-6 col-lg-4 mt-3">
<article class="sample mx-3 px-2">
<h4 class="color pb-2 pt-3"><i class="fas fa-shield-alt"></i> Ambassador School</h4>
<img class="d-block w-100 img-fluid" src="images/dubai-british-school-students-bag-outstanding-pearson-learner-awards-img-492531.jpg" alt="british" />
<p class="pt-3">
Dubai British School (DBS) has established itself as one of the leading British schools in the region, offering a broad and balanced education to children from all around the world. We are a unique school
that places the wellbeing of our students and the interests of our community at the heart of everything we do.
</p>
<p class="pt-1">
<a class="btn float-right border bg-primary mr-n2" href="school-information.html"><i class="fas fa-user-plus"></i> Apply</a>
</p>
</article>
</div>
<div class="col-sm-12 col-md-6 col-lg-4 mt-3">
<article class="sample mx-3 px-2">
<h4 class="color pb-2 pt-3"><i class="fas fa-shield-alt"></i> Grammar School</h4>
<img class="d-block w-100 img-fluid" src="images/dubai-british-school-students-bag-outstanding-pearson-learner-awards-img-492531.jpg" alt="british" />
<p class="pt-3">
Dubai British School (DBS) has established itself as one of the leading British schools in the region, offering a broad and balanced education to children from all around the world. We are a unique school
that places the wellbeing of our students and the interests of our community at the heart of everything we do.
</p>
<p class="pt-1">
<a class="btn float-right border bg-primary mr-n2" href="school-information.html"><i class="fas fa-user-plus"></i> Apply</a>
</p>
</article>
</div>
<div class="col-sm-12 col-md-6 col-lg-4 mt-3">
<article class="sample mx-3 px-2">
<h4 class="color pb-2 pt-3"><i class="fas fa-shield-alt"></i> GEMS Royal Dubai School</h4>
<img class="d-block w-100 img-fluid" src="images/dubai-british-school-students-bag-outstanding-pearson-learner-awards-img-492531.jpg" alt="british" />
<p class="pt-3">
Dubai British School (DBS) has established itself as one of the leading British schools in the region, offering a broad and balanced education to children from all around the world. We are a unique school
that places the wellbeing of our students and the interests of our community at the heart of everything we do.
</p>
<p class="pt-1">
<a class="btn float-right border bg-primary mr-n2" href="school-information.html"><i class="fas fa-user-plus"></i> Apply</a>
</p>
</article>
</div>
<div class="col-sm-12 col-md-6 col-lg-4 mt-3">
<article class="sample mx-3 px-2">
<h4 class="color pb-2 pt-3"><i class="fas fa-shield-alt"></i> The Alpha School Dubai</h4>
<img class="d-block w-100 img-fluid" src="images/dubai-british-school-students-bag-outstanding-pearson-learner-awards-img-492531.jpg" alt="british" />
<p class="pt-3">
Dubai British School (DBS) has established itself as one of the leading British schools in the region, offering a broad and balanced education to children from all around the world. We are a unique school
that places the wellbeing of our students and the interests of our community at the heart of everything we do.
</p>
<p class="pt-1">
<a class="btn float-right border bg-primary mr-n2" href="school-information.html"><i class="fas fa-user-plus"></i> Apply</a>
</p>
</article>
</div>
</div>
</div>
</section>
<div class="mt-3">
<aside class="maps-aside">
<h5 class="py-2"><i class="fas fa-map-marked-alt"></i> Maps Direction</h5>
<iframe
class="align-center border w-100"
src="https://www.google.com/maps/embed?pb=!1m16!1m12!1m3!1d97087.73188733167!2d55.323191650888205!3d25.26911860784596!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!2m1!1sschool%20in%20dubai!5e0!3m2!1sen!2sae!4v1596492239640!5m2!1sen!2sae"
></iframe>
</aside>
</div>
<footer>
<div class="navbar-navz my-2">
<div class="flex-container">
<div class="b1 border border-dark border-left-0 border-right-0 pr-3">
<a href="index.html"><i class="fas fa-home d-none d-lg-inline"></i> Home</a>
</div>
<div class="b1 border border-dark border-left-0 border-right-0 pr-3">
<a href="school-directory-search-results.html"><i class="fas fa-search-location d-none d-lg-inline"></i> Search</a>
</div>
<div class="b1 border border-dark border-left-0 border-right-0 pr-3">
<a href="#"><i class="fas fa-address-card d-none d-lg-inline"></i> About Us</a>
</div>
<div class="b1 border border-dark border-left-0 border-right-0 pr-3">
<a href="#"><i class="fab fa-servicestack d-none d-lg-inline"></i> Services</a>
</div>
<div class="b2 border border-dark">
<a class="text-center h2" href="index.html">
<i class="fas fa-map-marker-alt pt-2 " aria-hidden="true"></i>
</a>
</div>
<div class="b1 border border-dark border-left-0 border-right-0 pl-3">
<a href="https://www.facebook.com/"><i class="fab fa-facebook-square d-none d-lg-inline"></i> Facebook</a>
</div>
<div class="b1 border border-dark border-left-0 border-right-0 pl-3">
<a href="https://twitter.com/"><i class="fab fa-twitter-square d-none d-lg-inline"></i> Twitter</a>
</div>
<div class="b1 border border-dark border-left-0 border-right-0 pl-3">
<a href="https://www.blogger.com/about/"><i class="fab fa-blogger d-none d-lg-inline"></i> Blog</a>
</div>
<div class="b1 border border-dark border-left-0 border-right-0 pl-3">
<a href="https://www.google.com/"><i class="fab fa-google-plus-square d-none d-lg-inline"></i> Google+</a>
</div>
</div>
</div>
<div>
<div class="row footer-one">
<div class="col-sm-12 col-md-5 col-lg-4">
<h5 class="text-center py-3 text-white">Subscribe</h5>
<form action="#" method="POST">
<div class="d-md-flex input-section">
<input class="mx-2 mb-2 mx-md-0 email-submit" type="email" name="email" placeholder="[email protected]" required />
<input class="btn mx-2 mb-2 mx-md-0 bg-danger text-white text-center search-submit" type="submit" value="SEARCH" />
</div>
</form>
</div>
<div class="col-sm-12 col-md-3 col-lg-4">
<h5 class="text-center py-3 text-white">Contact</h5>
<p class="text-center text-light px-4">Location: <span>Silicon Oasis Avenue, 1201L block - Dubai - UAE</span></p>
<p class="text-center text-light px-4">Tel: <span>+971 55 2026 183</span></p>
</div>
<div class="col-sm-12 col-md-4 pb-4 col-lg-4">
<h5 class="text-center py-3 text-white">About</h5>
<p class="text-center text-light px-4">We are serving the UAE for over 5 years. Over 30,000 schools are registered with us within the UAE. In Dubai, we are serving over 3,000 schools.</p>
</div>
</div>
</div>
<div>
<div class="d-flex justify-content-between">
<div class="ml-4">
<p class="footer-social2">
<a href="#"><i class="fas fa-home"></i></a>
<a href="#"><i class="fab fa-facebook-square"></i></a>
<a href="#"><i class="fab fa-twitter-square"></i></a>
<a href="#"><i class="fab fa-youtube-square"></i></a>
<a href="#"><i class="fab fa-blogger"></i></a>
</p>
</div>
<div class="d-flex mr-4">
<p class="">© Madrassa, Inc.</p>
<p class="">
<a href="/tos" class="link">Terms</a>
<a href="/privacy" class="link">Privacy</a>
</p>
</div>
</div>
</div>
</footer>
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js" integrity="sha384-DfXdz2htPH0lsSSs5nCTpuj/zy4C+OGpamoFVy38MVBnE+IbbVYUew+OrCXaRkfj" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/umd/popper.min.js" integrity="sha384-Q6E9RHvbIyZFJoft+2mJbHaEWldlvI9IOYy5n3zV9zzTtmI3UksdQRVvoxMfooAo" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/js/bootstrap.min.js" integrity="sha384-OgVRvuATP1z7JjHLkuOU7Xw704+h835Lr+6QL9UvYjZE3Ipu6Tp75j7Bh/kR0JKI" crossorigin="anonymous"></script>
</body>
</html>