-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathintroduction.html
266 lines (229 loc) · 13 KB
/
introduction.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="icon" href="./favicon.png">
<title>Introduction | Kilimanjaro Card</title>
<!-- BootStrap CSS CDN -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" integrity="sha384-xOolHFLEh07PJGoPkLv1IbcEPTNtaed2xpHsD9ESMhqIYd0nLMwNLD69Npy4HI+N" crossorigin="anonymous">
<!-- Bootstrap icons CDN -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.css">
<!-- Custom styles -->
<link rel="stylesheet" href="res/css/style.css">
<!-- google font -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap" rel="stylesheet">
</head>
<body>
<header class="mb-auto" id="top-header">
<div class="">
<!--Navbar-->
<nav class="navbar navbar-expand-lg navbar-dark container pt-3 pb-3">
<!-- Navbar brand -->
<a class="navbar-brand" href="./">
<img src="./res/images/logo/kilimanjaro-card-wordmark-web-white.png" alt="kilimanjaro-card-logo" class="top-nav-logo">
</a>
<!-- Collapse button -->
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#basicExampleNav" aria-controls="basicExampleNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<!-- Collapsible content -->
<div class="collapse navbar-collapse ml-auto" id="basicExampleNav">
<!-- Links -->
<ul class="navbar-nav ml-auto">
<li class="nav-item">
<a class="nav-link" href="index.html">Home</a>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" id="AboutDropdown" data-toggle="dropdown"
aria-haspopup="true" aria-expanded="false">About</a>
<div class="dropdown-menu dropdown-primary" aria-labelledby="AboutDropdown">
<a class="dropdown-item" href="about.html">Why Kilimanjaro Card</a>
<a class="dropdown-item" href="introduction.html">Introduction</a>
<a class="dropdown-item" href="howtoplay.html">How to Play</a>
</div>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" id="navbarDropdownMenuLink" data-toggle="dropdown"
aria-haspopup="true" aria-expanded="false">Games</a>
<div class="dropdown-menu dropdown-primary" aria-labelledby="navbarDropdownMenuLink">
<a class="dropdown-item" href="baso.html">Baso</a>
<a class="dropdown-item" href="kotea.html">Kotea</a>
<a class="dropdown-item" href="njama.html">Njama</a>
</div>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" id="LangDropdown" data-toggle="dropdown"
aria-haspopup="true" aria-expanded="false">
<i class="bi bi-globe"></i>
<!-- <i class="bi bi-chevron-down"></i> -->
</a>
<div class="dropdown-menu dropdown-primary dropdown-menu-right" aria-labelledby="LangDropdown">
<a class="dropdown-item" href="/introduction.html"> English </a>
<a class="dropdown-item" href="/sw/introduction.html"> Swahili </a>
</div>
</li>
</ul>
</div>
<!-- Collapsible content -->
</nav>
<!--/.Navbar-->
</div>
</header>
<main>
<div class="container pt-md-4 pt-sm-2 pb-5">
<h4 class="section-title">
<i class="bi bi-brightness-high-fill section-title-icon"></i>
Kilimanjaro Cards Appearance
</h4>
<p>
<b>
The total number of cards are 36 categorized into seven groups namely noun cards, verb
cards, special cards, pronoun card, adjective card, adverb card and sentence card.
</b>
</p>
<p>
<b>Each card has a backside and frontside appearance. </b>
</p>
<p>
<h5 class="section-title">
The Backside Appearance
</h5>
<p>
It presents the picture of Mount kilimanjaro, giraffe and the vegetation around the mountain.
</p>
<br>
<img src="/res/images/imgs/intro/backside.png" alt="backside-view" class="intro img-fluid text-center">
</p>
<h5 class="section-title">
The Frontside Appearance
</h5>
<br>
<img src="/res/images/imgs/intro/KARATA.jpg" alt="frontside-view" class="intro img-fluid">
<br>
<br>
<h5 class="section-title">
The frontside of the twenty four (24) noun cards (letter A to Z)
</h5>
<p>
<ul class="list-unstyled">
<li>
i. They have different number of Swahili-English word pairs arranged in alphabetical order
from A to Z.
</li>
<li>
ii. Each card contains a picture that represents the object of the first Swahili-English word
pair.
</li>
</ul>
<img src="./res/images/imgs/intro/THE FRONTSIDE VIEW 01.jpg" alt="twenty-four-nouns" class="intro img-fluid">
<img src="./res/images/imgs/intro/THE FRONTSIDE VIEW 02.jpg" alt="twenty-four-nouns" class="intro img-fluid">
<img src="./res/images/imgs/intro/THE FRONTSIDE VIEW 03.jpg" alt="twenty-four-nouns" class="intro img-fluid">
</p>
<h5 class="section-title">
The frontside of the four (4) verb cards.
</h5>
<p>
<uL class="list-unstyled">
<li>
1. They have six (6) Swahili-English word pairs (verbs).
</li>
<li>
ii. Each card contains a picture that describes the verb of the first Swahili-English word pair.
</li>
</uL>
<img src="./res/images/imgs/intro/(image no 25 to28).jpg" alt="four-verbs-img" class="intro img-fluid">
</p>
<br>
<h5 class="section-title">
The frontside of the four (4) special cards.
</h5>
<p>
They contain pictures of Star, Sun, Moon and Bulb, whereas the Sun, the Moon and Star
naturally produce white light and the bulb produces the white light artificially.
<br>Note that, <em>the special cards represent white colour.</em>
<br>
<br>
<img src="./res/images/imgs/intro/Special cards (image no 29 to 32).jpg" alt="special-cards-img" class="intro img-fluid">
</p>
<br>
<h5 class="section-title">
The frontside of the pronoun card.
</h5>
<p>
It is a pictureless card that contains six (6) Swahili – English word / sentence pairs (pronouns).
<br>
<br>
<img src="./res/images/imgs/intro/Image no 36.jpg" alt="pronoun-card" class="intro img-fluid">
</p>
<br>
<br>
<h5 class="section-title">
The frontside of the adjective card.
</h5>
<p>
It is a pictureless card that contains five (5) Swahili ‐ English word / sentence pairs(pronouns).
<br>
<br>
<img src="./res/images/imgs/intro/Image no 35.jpg" alt="adjective-card" class="intro img-fluid">
</p>
<br>
<h5 class="section-title">
The frontside of the adverb card.
</h5>
<p>
It is a pictureless card that contains four (4) Swahili ‐ English word / sentence pairs(adverbs). <br>
<br>
<img src="./res/images/imgs/intro/Image no 34.jpg" alt="adverb-card" class="intro img-fluid">
</p>
<br>
<h5 class="section-title">
The frontside of the sentence card.
</h5>
<p>
It is a pictureless card that contains three (3) Swahili ‐ English sentence pairs (sentences).
<br> <br>
<img src="./res/images/imgs/intro/Image no 33.jpg" alt="sentence-card" class="intro img-fluid">
</p>
<br>
<br>
<h5 class="section-title">
The colours of card.
</h5>
<p>
The colour of each card is represented by colour of pairs of Swahili words / sentences with their
meanings in English on particular card.
<br>
</p>
</div>
</main>
<footer>
<div class="container pt-5 pb-5">
<div class="row">
<div class="col-md-9 col-sm-12 pb-sm-3">
<a href="/index.html"><img src="./res/images/logo/kilimanjaro-card-wordmark-web-white.png" alt="kilimanjaro-car-logo" class="footer-logo"></a>
</div>
<div class="col-md-3 col-sm-12">
<h5>Follow Us</h5>
<a href="https://www.facebook.com/profile.php?id=100082579189286"><i class="bi bi-facebook ft-social-icon"></i> </a>
<a href="https://www.instagram.com/kilimanjarocard"><i class="bi bi-instagram ft-social-icon"></i> </a>
<a href="https://www.tiktok.com/@kilimanjarocard"><i class="bi bi-tiktok ft-social-icon"></i> </a>
<a href="http://twitter.com/kilimanjarocard"><i class="bi bi-twitter ft-social-icon"></i> </a>
<a href="https://youtube.com/channel/UC2PFwa3FBdt10tE4ru-wzmg"><i class="bi bi-youtube ft-social-icon"></i> </a>
<!-- <div class="text-left mt-3 pt-3" id="copy-left">
© Kilimanjaro Card.
</div> -->
</div>
</div>
</div>
<div class="text-center" id="copy-left">
© Kilimanjaro Card.
</div>
</footer>
<!-- Boot strap JS CDN -->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/jquery.slim.min.js" integrity="sha384-DfXdz2htPH0lsSSs5nCTpuj/zy4C+OGpamoFVy38MVBnE+IbbVYUew+OrCXaRkfj" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-Fy6S3B9q64WdZWQUiU+q4/2Lc9npb8tCaSX9FK7E8HnRr0Jz8D6OP9dO5Vg3Q9ct" crossorigin="anonymous"></script>
</body>
</html>