forked from derekeder/FusionTable-Map-Template
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathindex.html
362 lines (312 loc) · 18.8 KB
/
index.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
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
<!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">
<meta name="description" content="Early Oakland helps parents find low cost early childhood education services">
<meta name="author" content="Spike">
<!-- <link rel="shortcut icon" href="../../assets/ico/favicon.ico"> -->
<title>Early Oakland</title>
<!-- Bootstrap core CSS -->
<link href="css/bootstrap.min.css" rel="stylesheet">
<link href="css/style.css" rel="stylesheet">
<!--[if lt IE 9]><script src="../../assets/js/ie8-responsive-file-warning.js"></script><![endif]-->
<!-- HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
<script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
<![endif]-->
<!-- Custom styles for this template -->
<link href="css/carousel.css" rel="stylesheet">
<link href="//netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.css" rel="stylesheet">
</head>
<!-- NAVBAR
================================================== -->
<body>
<div class="navbar-wrapper">
<div class="navbar navbar-inverse navbar-static-top" role="navigation">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
</div>
<div class="navbar-collapse collapse">
<ul class="nav navbar-nav">
<li class="active"><a href="#">EarlyOakland</a></li>
<li><a href="find.html">Find Services</a></li>
<!-- <li><a href="#funders">Funders</a></li>
<li><a href="#partners">Partners</a></li> -->
<li><a href="#" data-toggle="modal" data-target="#suggestions">Enrolling Steps</a></li>
<li><a href="#" data-toggle="modal" data-target="#faq">FAQ</a></li>
</ul>
</div>
</div>
</div>
</div>
<!-- Carousel
================================================== -->
<div id="myCarousel" class="carousel slide" data-ride="carousel">
<!-- Indicators -->
<ol class="carousel-indicators">
<li data-target="#myCarousel" data-slide-to="0" class="active"></li>
<li data-target="#myCarousel" data-slide-to="1"></li>
<li data-target="#myCarousel" data-slide-to="2"></li>
</ol>
<div class="carousel-inner">
<div class="item active" style="background: #833dc7 url(images/startrotate1.jpg);">
<div class="container">
<div class="carousel-caption">
<img src="images/eologo180.png" alt="Early Oakland" />
<p>Learning is a lifelong process that starts the day we are born.</p>
<p><a class="btn btn-lg btn-primary" href="find.html" role="button">Enroll your child today</a></p>
</div>
</div>
</div>
<div class="item" style="background: #446aa8 url(images/startrotate2.jpg);">
<div class="container">
<div class="carousel-caption">
<h1>We're here to help.</h1>
<p>Early learning programs and services are located near you, and EarlyOakland.Org is here to support you. Many of these programs are free or low-cost.</p>
<p><a class="btn btn-lg btn-primary" href="#learn" role="button">Find services</a></p>
</div>
</div>
</div>
<div class="item" style="background: #833dc7 url(images/startrotate1.jpg);">
<div class="container">
<div class="carousel-caption">
<h1>Early learning programs work</h1>
<p>Whatever effort it takes to get your child, particularly your 3 to 5 year old into an early learning program will be worth it--you will see the benefits throughout your child's life.</p>
<p><a class="btn btn-lg btn-primary" href="#why" role="button">Learn More about learning programs</a></p>
</div>
</div>
</div>
</div>
<a class="left carousel-control" href="#myCarousel" data-slide="prev"><span class="glyphicon glyphicon-chevron-left"></span><span class="sr-only">Go to previous slide</span></a>
<a class="right carousel-control" href="#myCarousel" data-slide="next" alt="Go to next slide"><span class="glyphicon glyphicon-chevron-right"></span><span class="sr-only">Go to next slide</span></a>
</div><!-- /.carousel -->
<!-- Marketing messaging and featurettes
================================================== -->
<!-- Wrap the rest of the page in another container to center all the content. -->
<!-- START THE FEATURETTES -->
<div class="container">
<hr class="featurette-divider">
<div class="row featurette">
<div class="col-md-7">
<h2 class="featurette-heading" name="why">Why should you consider enrolling your child?</h2>
<p class="lead">Children thrive when they are in a supervised learning environment where they socialize and learn with other children and engage in age-appropriate learning.</p>
<p class="lead">To begin the enrollment process, Call or visit </p>
<ul>
<li class="lead"><a href="http://bananasinc.org">BANANAS</a> for information and referrals to different types of programs (510) 658-0381 </li>
<li class="lead"><a href="http://www.ousd.k12.ca.us/domain/92">Oakland Unified School District Early Childhood Education</a>: (510) 273-1590</li>
<li class="lead"><a href="http://www2.oaklandnet.com/Government/o/DHS/o/ChildrenYouthServices/OAK022077">Oakland Head Start</a>: (510) 238-3165</li>
<li class="lead"><a href="http://www.unitycouncil.org/head-start-and-early-head-start/">Unity Council Head Start</a>: (510) 535-6102</li>
<p><a class="btn btn-lg btn-primary" href="find.html" role="button">Find Services</a></p>
</div>
<div class="col-md-5">
<img class="featurette-image img-responsive" src="images/princess500.jpg" alt="Child drawing a picture">
</div>
</div>
<hr class="featurette-divider">
<div class="row featurette">
<div class="col-md-5">
<img class="featurette-image img-responsive" src="images/carwash.jpg" alt="Happy child washing a car">
</div>
<div class="col-md-7">
<h2 class="featurette-heading">What age can my child be?</h2>
<p class="lead">Early learning makes a difference during the preschool years and beyond!</p>
<p class="lead">Whatever effort it takes to get your child, particularly your 3 to 5 year old into a developmentally appropriate early learning program will be worth it--you will see the benefits throughout your child's life. We can help you connect to programs for children aged between 0 and 10 years.</p>
<p><a class="btn btn-lg btn-primary" href="find.html" role="button">Find Services Nearby!</a></p>
</div>
</div>
<hr class="featurette-divider">
<div class="row featurette">
<div class="col-md-7">
<h2 name="learn" class="featurette-heading">How Do I Find These Services? <em>Easy!</em></h2>
<p class="lead">Follow any button on this site to Find Services and you'll see a map that lets you pick your child's age, you can then see contact and enrollment information about services close to your home or work. You can call too!</p>
<p><a class="btn btn-lg btn-primary pull-right" href="find.html" role="button">Find Services & Enroll Now</a></p>
</div>
<div class="col-md-5">
<img class="featurette-image img-responsive" src="images/map.jpg" alt="Screenshot of Find Services feature">
</div>
</div>
<hr class="featurette-divider">
</div> <!-- /.container-->
<!-- /END THE FEATURETTES -->
<h1 class="text-center">Early learning is power.</h1>
<hr />
<div class="container partners" id="partners">
<h3 class="text-center">Services Provided By:</h3>
<!-- Four columns of text for site sponsors - -->
<div class="row">
<div class="col-xs-12 col-sm-3">
<a href="http://www.bananasinc.org/" ><img class="img" src="images/bananas180.png" alt="Bananas Inc" width="100%"></a>
<!-- <h3>Bananas, Inc.</h3> -->
</div><!-- /.col-lg-3 -->
<div class="col-xs-12 col-sm-3">
<a href="http://www.ousd.k12.ca.us/Domain/92" ><img class="img" src="images/sprout180.png" alt="OUSD Sprout Early Education" width="100%"></a>
<!-- <h3>OUSD ECE</h3> -->
</div><!-- /.col-lg-4 -->
<div class="col-xs-12 col-sm-3">
<a href="http://www2.oaklandnet.com/Government/o/DHS/o/ChildrenYouthServices/OAK022077" ><img class="img" src="images/headstart180.png" alt="Oakland Head Start" width="100%"></a>
<!-- <h3>Oakland HeadStart</h3>-->
</div><!-- /.col-lg-3 -->
<div class="col-xs-12 col-sm-3">
<a href="http://www.unitycouncil.org/head-start-and-early-head-start/" ><img class="img" src="images/unity180.png" alt="The Unity Project" width="100%"></a>
<!-- <h3>Unity Council Preschools</h3>-->
</div><!-- /.col-lg-3 -->
</div><!-- /.row -->
</div> <!-- /.container-->
<hr />
<div class="container" >
<h3 class="text-center">Thanks to the following partners</h3>
<div class="col-xs-12 col-md-6">
<p class="text-center">City of Oakland Department of Human Services & Office of Children Youth and Families</p>
<p class="text-center">Alameda County Community Action Partnership</p>
<p class="text-center">Alameda County Early Care and Education Planning Council</p>
<p class="text-center">Alameda County Public Health Department</p>
<p class="text-center">Alameda County Social Services Agency</p>
<p class="text-center">Alameda County WIC Agency</p>
<p class="text-center">Alameda County WIC Agency</p>
<p class="text-center">Alameda County Supervisor Keith Carson</p>
<p class="text-center">BANANAS Child Care Resource and Referral</p>
<p class="text-center">BlueSkies for Children</p>
</div>
<div class="col-xs-12 col-md-6">
<p class="text-center">City of Oakland Public Library</p>
<p class="text-center">David and Lucile Packard Foundation</p>
<p class="text-center">First 5 Alameda County</p>
<p class="text-center">Mills College School of Education</p>
<p class="text-center">Oakland Reads 2020</p>
<p class="text-center">Oakland Unified School District Early Childhood Education Department</p>
<p class="text-center">The San Francisco Foundation</p>
<p class="text-center">UniversityNow/Patten University</p>
<p class="text-center">The Unity Council Head Start</p>
</div> <!-- span-->
</div> <!-- container -->
<hr />
<div class="container">
<h3 class="text-center" >We appreciate the generosity of our supporters:</h3>
</div> <!-- /.container-->
<div class="container funders" id="funders">
<!-- Three columns of text for site sponsors - rounded logos? -->
<div class="row">
<div class="col-xs-12 col-sm-3">
<a href="http://krfoundation.org/" ><img class="img-rounded" border-radius: 6px; src="images/rainin300.png" alt="Kenneth Rainin Foundation" width="100%"></a>
</div><!-- /.col-lg-4 -->
<div class="col-xs-12 col-sm-3">
<a href="http://www.first5alameda.org" ><img class="img-rounded" border-radius: 6px; src="images/firstfive300.png" width="100%" alt="First Five Alameda County"></a>
</div><!-- /.col-lg-4 -->
<div class="col-xs-12 col-sm-3">
<a href="http://www.oaklandeducates.com/" ><img class="img-rounded" border-radius: 6px; src="images/oakedcabinet300.png" width="100%" alt="Oakland Education Cabinet"></a>
</div><!-- /.col-lg-4 -->
<div class="col-xs-12 col-sm-3">
<a href="http://www.ebcf.org" ><img class="img-rounded" border-radius: 6px; src="images/ebcf300.jpg" width="100%" alt="East Bay Community Foundation"></a>
</div><!-- /.col-lg-4 -->
</div><!-- /.row -->
</div> <!-- /.container-->
<hr />
<div class="container">
<div class="row">
<div class="col-xs-12 col-sm-4">
<h2 class="text-center">Built in partnership with</h2>
<a href="http://openoakland.org"><img src="images/ooinverted500.png" alt="Open Oakland" width="250" class="img-responsive center-block"></a>
</div><!-- /.col-xs-6 -->
<div class="col-xs-12 col-sm-4">
<img class="featurette-image img-responsive" src="images/trike500.jpg" alt="Child on Tricycle">
</div><!-- /.col-xs-6 -->
<div class="col-xs-12 col-sm-4">
<p class="text-center"><a href="mailto:[email protected]"><span class="glyphicon glyphicon-send"></span> Email us</a></p>
</button>
<p class="text-center"> <a href="https://www.facebook.com/pages/Early-Oakland/"> <i class="fa fa-facebook-square fa-2x"></i> Like us on Facebook!</a></p>
<p class="text-center"> <a href="https://twitter.com/EarlyOakland"><i class="fa fa-twitter fa-2x"></i> Follow us for updates</a></p>
</div><!-- /.col-xs-6 -->
</div><!-- /.row -->
</div> <!-- container -->
<!-- FOOTER -->
<footer>
<br />
<p class="pull-right"><a href="#">Back to top</a></p>
<p>Openly licensed- Fork this site · <a href="https://github.com/openoakland/EarlyOakland">Code on GitHub</a> ·</p>
</footer>
</div><!-- /.container -->
<!--MODALS!-->
<div class="modal fade bs-example-modal-lg" id="suggestions"tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
<div class="modal-dialog modal-lg">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
<h4 class="modal-title" id="myModalLabel">Finding and Enrolling in Early Education Programs in Oakland: </h4>
</div>
<div class="row featurette">
<div class="col-md-3">
<img class="featurette-image img-responsive" src="images/slide500.jpg" alt="Child on slide">
</div>
<div class="col-md-9">
<ul>
<li>First- use our <a href="find.html">map tool</a> to locate a service that is convenient for you.</li>
<li>Talk to other parents about their experiences; read materials from <a href="http://bananasinc.org">BANANAS</a> on selecting the right choice for your child and your family.</li>
<li>Call BANANAS for information and referrals to different types of programs -- full or part time, different age groups, private, public, subsidized, etc. (510) 658-0381 <strong>and</strong></li>
<li>If you think your family meets low income guidelines – or if you have a child with a special need -- call the following subsidized programs directly:</li>
<ul>
<li>Oakland Unified School District: 510-273-1590, <a href="http://www.ousd.k12.ca.us/domain/92">website</a></li>
<li>Oakland Head Start: 510-238-3165, <a href="http://www2.oaklandnet.com/Government/o/DHS/o/ChildrenYouthServices/OAK022077">website</a></li>
<li>Unity Council Head Start: 510-535-6102 <a href="http://www.unitycouncil.org/head-start-and-early-head-start/">website</a></li>
<li>Ask questions about the services and learning opportunities provided, <a href="find.html">where programs are located</a>, and visit them.</li>
<li>Be prepared to complete paperwork and present documents such as children’s birth certificates, proof of family income, health and immunization records, and proof of residency (not citizenship or immigrant status). </li>
</ul>
</ul>
<ul>
<li>Families in transition or without permanent homes are welcome.</li>
<li>You may be put on a waiting list. Don’t give up! Keep calling!</li>
</ul>
<p><a class="btn btn-lg btn-primary" href="find.html" role="button">Find Services Nearby!</a></p>
</div>
</div>
</div>
</div>
</div>
<!--MODALS!-->
<div class="modal fade bs-example-modal-lg" id="faq" tabindex="-1" role="dialog" aria-labelledby="myModalLabel2" aria-hidden="true">
<div class="modal-dialog modal-lg">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
<h4 class="modal-title" id="myModalLabel2">Frequently Asked Questions</h4>
</div>
<ul class="faq">
<li><strong>What programs are included in this website?</strong></li>
<li>All of the State subsidized early learning programs and all of the federally supported Head Start programs in Oakland. This includes part day and full day programs. Most serve 3 & 4 year olds; a few serve infants and toddlers. The website provides information on each program.</li>
<li><strong>Do these programs charge a fee?</strong></li>
<li>Head Start does not; the state subsidized programs may charge a small fee depending on your income.</li>
<li><strong>What if I am not low income?</strong></li>
<li>Head Start is open to some higher income families; call to find out if you qualify.
Call BANANAS—510-658-0138 for referrals to private early learning programs.</li>
<li><strong>What if I have a CalWorks or other Alternative Payment Voucher to pay for child care?</strong></li>
<li>Ask the program if they will accept your voucher – or call BANANAS for referrals to private programs that accept vouchers (most do!).</li>
<li><strong>What if my child has a special need?</strong></li>
<li>Tell the program about your child; you can also call the Family Resource Network Oakland for assistance ((510) 547-7322 or <a href="http://www.frmoakland.org">www.frmoakland.org</a>)</li>
</ul>
</div>
</div>
</div>
<!-- Bootstrap core JavaScript
================================================== -->
<!-- Placed at the end of the document so the pages load faster -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script>$('.carousel').carousel()</script>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-35908939-4', 'earlyoakland.org');
ga('send', 'pageview');
</script>
</body>
</html>