-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
214 lines (203 loc) · 6.85 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>CIKAN HOMEPAGE</title>
<script
src="https://kit.fontawesome.com/db860b5836.js"
crossorigin="anonymous"
></script>
<link rel="stylesheet" href="Cikan.css" />
</head>
<body>
<header class="indexheader">
<div class="logo-side">
<figure class="logo">
<img
src="Img/IMG-20221228-WA0012-removebg-preview.png"
alt="Logo of school"
width="100px"
height="100px"
/>
</figure>
<h1 class="logo-name">CIKAN EXCEL SCHOOL</h1>
</div>
<button
class="menu-button"
aria-expanded="false"
aria-controls="menubtn"
></button>
<nav class="menu">
<ul class="menuitems" id="menubtn">
<li class="item1"><a href="#">Home</a></li>
<li class="item2"><a href="#">About us</a></li>
<li class="item3 expandable">
<a href="#">Academics</a>
<ol class="service-list">
<li class="servicelist1"><a href="#">Creche</a></li>
<li class="servicelist1"><a href="#">Pre-nursery</a></li>
<li class="servicelist2"><a href="#">Nursery</a></li>
<li class="servicelist3"><a href="#">Primary</a></li>
<li class="servicelist4"><a href="#">Junior secondary</a></li>
</ol>
</li>
<li class="item4"><a href="#">Admissions</a></li>
<li class="item4 expandable">
<a href="#">Shop</a>
<ol>
<li class="shoplist1"><a href="#">Uniform</a></li>
<li class="shoplist2"><a href="#">Textbook</a></li>
<li class="shoplist3"><a href="#">Exercise book</a></li>
</ol>
</li>
<li class="item5 expandable">
<a href="#">Contact us</a>
<ol>
<li class="contactlist"><a href="#">Future Student</a></li>
<li class="contactlist"><a href="#">Employment</a></li>
</ol>
</li>
</ul>
</nav>
</header>
<main>
<!-- About us -->
<section class="About">
<article class="writeup">
<h2>About us</h2>
<figure>
<img src="Img/About.jpeg" alt="Welcome PIC" width="300px" />
</figure>
<p>
CIKAN Excel School was created in 2014 out of the founder’s passion
to make a positive difference in the lives of young people in Africa
using Nigeria as the starting point. Every child that walks into the
CES premises as a student is part of the CIKAN Excel School (CES)
family. This is a place where close ties between home and school are
developed and nurtured.
</p>
<a href="#" class="button">Read more</a>
</article>
</section>
<!-- Academics -->
<section class="Academics">
<h2>Academics</h2>
<article class="content">
<figure class="subcontent subcontent1">
<a href=""
><img src="Img/creche2.jpeg" alt="Picture of creche children" />
<h3>Creche</h3>
</a>
</figure>
<figure class="subcontent subcontent2">
<a href="">
<img
src="Img/pre nursery.jpeg"
alt="Picture of Pre-nursery children"
/>
<h3>Pre-nursery</h3>
</a>
</figure>
<figure class="subcontent subcontent3">
<a href="">
<img src="Img/Nursery.jpeg" alt="Picture of Nursery children" />
<h3>Nursery</h3>
</a>
</figure>
<figure class="subcontent subcontent4">
<a href="">
<img src="Img/Primary.jpeg" alt="Picture of Primary children" />
<h3>Primary</h3>
</a>
</figure>
<figure class="subcontent subcontent5">
<a href="">
<img
src="Img/Secondary.jpeg"
alt="Picture of Secondary children"
height="200px"
/>
<h3>Secondary</h3>
</a>
</figure>
</article>
</section>
<!-- Admission -->
<section class="Admission">
<h2>Admissions</h2>
<article class="content">
<figure class="subcontent subcontent1">
<a class="icon" href="#"
><i class="fas fa-clipboard-question"></i
></a>
<p>FAQ's</p>
</figure>
<figure class="subcontent subcontent2">
<a class="icon" href="#"><i class="fas fa-clipboard-list"></i></a>
<p>Application Checklist</p>
</figure>
<figure class="subcontent subcontent3">
<a class="icon" href="#"><i class="fas fa-file"></i></a>
<p>Admission Form</p>
</figure>
</article>
</section>
<!-- Extracurriculars -->
<section class="Extracurricular">
<h2>Extracurriculars</h2>
<article class="content">
<figure class="subcontent subcontent1">
<a href=""
><img src="Img/Play.jpeg" alt="Picture of Lab" />
<h3>Playground</h3>
</a>
</figure>
<figure class="subcontent subcontent1">
<a href=""
><img src="Img/culture.jpeg" alt="Picture of culture" />
<h3>Cultural Dance</h3>
</a>
</figure>
<figure class="subcontent subcontent1">
<a href=""
><img src="Img/Excursion.jpeg" alt="Excursion" />
<h3>Excursion</h3>
</a>
</figure>
<figure class="subcontent subcontent1">
<a href=""
><img src="Img/fire fighters.jpeg" alt="Fire fighters" />
<h3>Career Day</h3>
</a>
</figure>
</article>
</section>
<!-- Contact us -->
<section class="Contact us">
<article class="content">
<h2>Contact us</h2>
<div class="subcontent">
<figure class="subcontentTeacher">
<a class="icon" href="#"
><i class="fas fa-person-chalkboard"></i
></a>
<p>Teacher</p>
</figure>
<figure class="subcontentStudent">
<a class="icon" href="#"><i class="fas fa-graduation-cap"></i></a>
<p>Prospective student</p>
</figure>
</div>
</article>
</section>
</main>
<footer>
<p id="copyright">
© <span id="currentYear"></span> CIKAN Excel School. All rights
reserved.
</p>
</footer>
<script src="Cikan.js"></script>
</body>
</html>