-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
144 lines (130 loc) · 5.26 KB
/
index.html
File metadata and controls
144 lines (130 loc) · 5.26 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8"/>
<meta name="viewport" content="width=device-width,initial-scale=1"/>
<meta name="google-adsense-account" content="ca-pub-9429571484429929">
<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-9429571484429929"
crossorigin="anonymous"></script>
<title>Erica's Learning and Childcare</title>
<link rel="preconnect" href="https://fonts.googleapis.com"/>
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin/>
<link rel="stylesheet" href="assets\css\style.css"/>
<script src="assets\js\script.js" defer></script>
</head>
<body>
<header class="site-header"><a class="logo" href="#"><img src="assets\images\Childcare.jpg" alt="Childcare" height="36"/></a>
<nav id="siteNav" class="site-nav" aria-label="Main">
<a href="#services">Ages Served</a>
<a href="#contact">Contact</a>
<a href="#about">About</a>
</nav>
</header>
<main>
<section class="hero" role="region" aria-label="Hero">
<div class="hero__overlay"></div>
<div class="hero__content">
<h1>Erica's Learning and Childcare Center</h1>
<h2>Creating unforgettable moments and memories for children and families.</h2>
<script>
(adsbygoogle = window.adsbygoogle || []).push({});
</script>
<a class="btn btn--primary" href="#contact">Contact</a>
</div>
</section>
<section id="services" class="section">
<div class="container">
<h2 class="section__title">Ages Served:</h2>
<div class="cards">
<article class="card">
<h3>Infant</h3>
<p>(6 weeks - 17 months)</p>
</article>
<article class="card">
<h3>Toddler</h3>
<p>(18 months - 3 years)</p>
</article>
<article class="card">
<h3>Preschool</h3>
<p>(3 - 5 years)</p>
</article>
<article class="card">
<h3>School-Aged</h3>
<p>(5 years and up)</p>
</article>
</div>
<details class="services__all">
<summary>Hours of Operation</summary>
<ul class="list">
<li>-MONDAY : 06:00AM - 5:30PM</li>
<li>-TUESDAY : 06:00AM - 5:30PM</li>
<li>-WEDNESDAY: 06:00AM - 5:30PM</li>
<li>-THURSDAY : 06:00AM - 5:30PM</li>
<li>-FRIDAY : CLOSED</li>
<li>-SATURDAY : CLOSED</li>
<li>-SUNDAY : CLOSED</li>
<li>(Overnight care available at the discretion of provider)</li>
</ul>
</details>
</div>
</section>
<section id="about" class="section section--alt">
<div class="container">
<h2 class="section__title">About Us</h2>
<p>ERICA'S LEARNING AND CHILDCARE is a Licensed Type A Family Child Care Home in BEREA OH.
<p>Provider participates in a subsidized child care program.</p>
<!-- <p>Provider License Number: 2210025282 (Current Issue Date: 2021-12-23)</p> -->
<p>SILVER 'Step Up to Quality' Rating (2)</p>
</div>
</section>
<section id="contact" class="section">
<div class="container">
<h2 class="section__title">Get In Touch</h2>
<!-- Netlify Forms enabled -->
<form name="contact" method="POST" data-netlify="true" netlify-honeypot="bot-field" class="form" id="contactForm">
<input type="hidden" name="form-name" value="contact"/>
<p class="hidden">
<label>Contact Us: <input name="bot-field"/></label>
</p>
<div class="field">
<label for="name">Name</label>
<input id="name" name="name" type="text" placeholder="Your Name" required/>
</div>
<div class="field">
<label for="email">Email</label>
<input id="email" name="email" type="email" placeholder="you@example.com" required/>
</div>
<div class="field">
<label for="message">Message</label>
<textarea id="message" name="message" rows="5" placeholder="Feel free to send inquiries" required></textarea>
</div>
<button type="submit" class="btn btn--primary">Send Message</button>
<p id="formMsg" role="status" aria-live="polite"></p>
</form>
</div>
</section>
</main>
<footer class="site-footer">
<div class="container footer__grid">
<div>
<strong>Erica's Learning and Childcare</strong><br/>
706 Prospect Street<br/>
Berea, OH 44017<br/>
<a href="Ericaslearningandchildcare@gmail.com">Ericaslearningandchildcare@gmail.com</a> <br/>
(440) 376-4376<br/>
<small>*(Texts Only Please/Standard text messaging rates may apply from your mobile provider)*</small><br/>
</div>
<!--
<div class="social">
<a href="#" aria-label="Instagram">@willowpineevents</a>
<a href="#" aria-label="Pinterest">@willowpineevents</a>
<a href="#" aria-label="Facebook">Willow & Pine Events</a>
</div>
-->
</div>
</footer>
<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-9429571484429929"
crossorigin="anonymous"></script>
<script src= "assets\js\script.js" defer></script>
</body>
</html>