-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtech101.html
383 lines (223 loc) · 12.7 KB
/
tech101.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
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Cyberbill - Introduction to Tech</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="robots" content="all,follow">
<!-- Bootstrap CSS-->
<link rel="stylesheet" href="css/bootstrap.min.css">
<!-- Font Awesome & Pixeden Icon Stroke icon font-->
<link rel="stylesheet" href="css/font-awesome.min.css">
<link rel="stylesheet" href="css/pe-icon-7-stroke.css">
<!-- Google fonts - Roboto Condensed & Roboto-->
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto+Condensed:700|Roboto:300,400">
<!-- lightbox-->
<link rel="stylesheet" href="css/lightbox.min.css">
<!-- theme stylesheet-->
<link rel="stylesheet" href="css/style.default.css" id="theme-stylesheet">
<!-- Custom stylesheet - for your changes-->
<link rel="stylesheet" href="css/custom.css">
<!-- Favicon-->
<link rel="shortcut icon" href="img/C$.webp">
<!-- Tweaks for older IEs--><!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script><![endif]-->
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-WCPLBHJQHQ"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-WCPLBHJQHQ');
</script>
</head>
<body>
<!-- navbar-->
<header class="header">
<div role="navigation" class="navbar navbar-default">
<div class="container">
<div class="navbar-header"><a href="index.html" class="navbar-brand">Cyberbill</a>
<div class="navbar-buttons">
<button type="button" data-toggle="collapse" data-target=".navbar-collapse" class="navbar-toggle navbar-btn" style="color: blue;">Menu<i class="fa fa-align-justify"></i></button>
</div>
</div>
<div id="navigation" class="collapse navbar-collapse navbar-right">
<ul class="nav navbar-nav">
<li class="active"><a href="index.html"style="color: blue;">Home</a></li>
<li class="dropdown"><a href="#" data-toggle="dropdown" class="dropdown-toggle"style="color: blue;">Our Tech Hubs<b class="caret"></b></a>
<ul class="dropdown-menu">
<li><a href="kidshub.html"style="color: green;">Children Tech Hub</a></li>
<li><a href="teenshub.html"style="color: blue;">Students Tech Hub</a></li>
<li><a href="adultshub.html"style="color: blue;">Adult Tech Hub</a></li>
</ul>
</li>
<li><a href="contact.html" style="color: blue;">Contact us</a></li>
<li><a href="regform.html" style="color: gold;">REGISTER NOW</a></li>
</ul><a href="#" data-toggle="modal" data-target="#login-modal" class="btn navbar-btn btn-ghost pull-left"><i class="fa fa-sign-in"></i>Student Login</a>
</div>
</div>
</div>
</header>
<!-- *** LOGIN MODAL ***_________________________________________________________
-->
<div id="login-modal" tabindex="-1" role="dialog" aria-labelledby="Login" aria-hidden="true" class="modal fade">
<div class="modal-dialog modal-sm">
<div class="modal-content">
<div class="modal-header">
<button type="button" data-dismiss="modal" aria-hidden="true" class="close">×</button>
<h4 id="Login" class="modal-title">Student login</h4>
</div>
<div class="modal-body">
<form action="customer-orders.html" method="post">
<div class="form-group">
<input id="email_modal" type="text" placeholder="email" class="form-control">
</div>
<div class="form-group">
<input id="password_modal" type="password" placeholder="password" class="form-control">
</div>
<p class="text-center">
<button type="button" class="btn btn-primary"><i class="fa fa-sign-in"></i> Log in</button>
</p>
</form>
<p class="text-center text-muted">Not registered yet?</p>
<p class="text-center text-muted"><a href="regform.html"><strong>Buy a course now</strong></a>to obtain your student credentials and have full access</p>
</div>
</div>
</div>
</div>
<!-- *** LOGIN MODAL END ***-->
<section class="background-gray-lightest">
<div class="container">
<div class="breadcrumbs">
<ul class="breadcrumb">
<li><a href="index.html">Home</a></li>
<li><a style="color: blue;">Getting Started</li>
</ul>
</div>
<div class="image"><a href="tech101.html"><img src="img/images (6).jpeg" alt="" class="img-responsive"></a></div>
<h3><a style="color: teal;">Course Introduction</a></h3>
<p class="lead">Are you ready to embark on a journey into the world of technology? In our course, "Tech 101 for Adults," we invite you to discover the vast and exciting realm of modern technology. Whether you're new to technology or looking to enhance your skills, this course is designed to provide you with a friendly and approachable introduction to the digital landscape.</p>
<div class="blog-post">
<div class="container">
<div class="row">
<div class="col-lg-12">
<div class="post-content margin-bottom--big">
<p><code><strong>Giving you the right footing in learnig and developing Tech skills</strong></code></p>
<h3 style="color: purple;">Tech 101: Getting Started</h3>
<p><b>Course duration:</b> <code>6 weeks</code></p>
<h3><a style="color: teal;">Course Overview:</a></h3>
<p>In this course, you'll delve into the essentials of technology, step by step. We'll guide you through the foundations of using devices, navigating software, and understanding digital concepts. From setting up your devices to exploring online tools, you'll gain the confidence to embrace technology in your daily life.</p>
<h4><a style="color: purple;">What you will learn</a></h4>
<ul>
<li>Basics of using computers, smartphones, and tablets</li>
<li>Navigating common software and applications</li>
<li>Exploring the internet and staying safe online</li>
<li>Understanding digital communication and social media</li>
<li>Introduction to online tools for productivity and entertainment</li>
<li>Tips for troubleshooting and seeking help when needed</li>
<li>Career Opportunities in Tech</li>
<li>And lots more</li>
</ul>
<h4><a style="color: purple;">Why should you buy this course</a></h4>
<p>Our course is tailored to the needs of adults who want to bridge the gap between themselves and technology. We understand that learning technology can sometimes be overwhelming, but with our supportive approach and hands-on activities, you'll be well on your way to becoming tech-savvy. By the end of the course, you'll have a solid foundation to confidently navigate the digital world.</p>
<h4><a style="color: purple;">Who should Enroll</a></h4>
<ul>
<li>Adults who are new to technology and want to learn the basics</li>
<li>Individuals seeking to enhance their digital skills</li>
<li>Individuals seeking to switch into Tech</li>
<li>Those who want to feel more comfortable using computers, devices, and online tools</li>
</ul>
<p>Join us in this course and embark on a learning adventure that will empower you to embrace technology with confidence. Get ready to unlock new opportunities in the digital age!</p>
<h4><a style="color: purple;">Detailed Course Curriculum</a></h4>
<i>Week 1: Introduction to Technology and Devices</i>
<ul>
<li>Understanding the importance of technology in the modern world</li>
<li>Exploring different types of devices: computers, smartphones, tablets</li>
<li>Setting up and basic navigation of devices</li>
<li>Hands-on practice: Using a computer, smartphone, and tablet</li>
</ul>
<i>Week 2: Navigating Software and Applications</i>
<ul>
<li>Introduction to common software applications (word processing, email, web browsers)</li>
<li>Exploring mobile apps and their functionality</li>
<li>Hands-on practice: Writing a document, sending an email, browsing the internet</li>
</ul>
<i>Week 3: Digital Literacy and Online Safety</i>
<ul>
<li>Basics of digital literacy: understanding URLs, web search, and online resources</li>
<li>Online safety and privacy: Recognizing phishing, protecting personal information</li>
<li>Hands-on practice: Conducting a web search, identifying safe websites</li>
</ul>
<i>Week 4: Digital Communication and Social Media</i>
<ul>
<li>Introduction to digital communication tools: email, messaging apps</li>
<li>Exploring social media platforms and their benefits</li>
<li>Hands-on practice: Sending an email, setting up a social media account</li>
</ul>
<i>Week 5: Online Tools for Productivity and Entertainment</i>
<ul>
<li>Discovering online tools for productivity (Google Docs, cloud storage) and entertainment (streaming services, online games)</li>
<li>Basics of online shopping and e-commerce</li>
<li>Hands-on practice: Creating a document in Google Docs, exploring streaming services</li>
</ul>
<i>Week 6: Tech Career Options and Future Steps</i>
<ul>
<li>Exploring various career paths in Tech</li>
<li>Exploring online resources and communities for tech support</li>
<li>Reflecting on progress and setting future goals for continued tech learning</li>
<li>Final Examination and Grading</li>
</ul>
<p style="color: blue;">Bonus: <code>Free Tech tools and Resources</code></p>
<p>👉 Cost of programme: <code>$75/N60k</code></p>
<p><a href="regform.html"><img src="img/register.jpeg" alt="Buy this course" style="max-width: 100%; height: auto;"></a></p>
<!-- /.post-content-->
<div class="background-gray-lightest section--padding-bottom-small">
<div class="container">
<div class="col-lg-12 text-center">
<p class="read-more"><a href="adultshub.html" class="btn btn-ghost">go back to adult hub</a></p>
</div>
</div>
</div>
<p></p>
<p></p>
<div class="col-md-12 text-center">
<p class="read-more"><a href="#top" class="btn btn-ghost" id="scrollTop">Return to Top</a></p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<footer class="footer">
<div class="footer__copyright">
<div class="container">
<div class="row">
<div class="col-md-6 text-center text-lg-left">
<p class="social"><a href="www.facebook.com" class="external facebook wow fadeInUp"><i class="fa fa-facebook"></i></a><a href="www.twitter.com" data-wow-delay="0.2s" class="external instagram wow fadeInUp"><i class="fa fa-instagram"></i></a><a href="www.instagram.com" data-wow-delay="0.4s" class="external gplus wow fadeInUp"><i class="fa fa-google-plus"></i></a><a href="https://mail.google.com/mail/u/?authuser=engrifeanyi@gmail.com" data-wow-delay="0.6s" class="email wow fadeInUp"><i class="fa fa-envelope"></i></a></p>
</div>
<!-- /.6-->
<div class="col-md-6 text-center text-lg-right mt-4 mt-lg-0">
<p>© 2023 CyberBill</p>
</div>
<div class="col-12 mt-4">
<p class="template-bootstrapious">Powered by <a href='https://bootstrapious.com/p/bootstrap-carousel' target=" _blank">Bootstrapious</a></p>
<!-- Please do not remove the backlink to us unless you support further theme's development at https://bootstrapious.com/donate. It is part of the license conditions. Thank you for understanding :)-->
</div>
</div>
</div>
</div>
</footer>
<!-- JavaScript files-->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/jquery.cookie.js"> </script>
<script src="js/lightbox.min.js"></script>
<script src="js/front.js"></script>
</body>
</html>