-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinterest.html
1500 lines (1489 loc) · 62.4 KB
/
interest.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
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!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.0" />
<link rel="stylesheet" href="CSS/bootstrap-4.6.0-dist/css/bootstrap.css" />
<link
rel="stylesheet"
href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css"
integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T"
crossorigin="anonymous"
/>
<link rel="stylesheet" href="CSS/interest.css" />
<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:wght@200&display=swap"
rel="stylesheet"
/>
<title>Career Guidance</title>
</head>
<body>
<nav class="navbar navbar-expand-lg navbar-light" id="navi">
<div class="container-fluid">
<a class="navbar-brand" id="text" href="#"
>Career <span class="brand">Guidance</span></a
>
<div class="navbar justify-content-end" id="navbarSupportedContent">
<ul class="navbar-nav me-auto">
<li class="nav-item">
<a class="nav-link" id="links" href="index.html">HOME</a>
</li>
<li class="nav-item">
<a class="nav-link" id="links" href="interest.html">RESOURCE PAGE</a>
</li>
<li class="nav-item">
<a class="nav-link" id="links" href="login.html">SIGN IN</a>
</ul>
</div>
</div>
</nav>
<div id="myCarousel" class="carousel slide" data-ride="carousel">
<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="carousel-item active">
<img
src="Images/pexels-photo-39811.jpeg"
alt="image"
height="100"
width="100"
/>
<div class="container">
<div class="carousel-caption">
<h2>Guiding you all the way</h2>
<p>Make career decisions that will change your life😉</p>
<p>
<a class="btn btn-lg btn-primary" href="#par">Learn More</a>
</p>
</div>
</div>
</div>
<div class="carousel-item">
<img src="Images/pexels-photo-2080963.jpeg" alt="imge" />
<div class="container">
<div class="carousel-caption">
<h2>Helpful Resources</h2>
<p>Your career matters so choose your course wisely</p>
<p>
<a class="btn btn-lg btn-primary" href="#par">Learn more</a>
</p>
</div>
</div>
</div>
<div class="carousel-item">
<img src="Images/pexels-photo-1008739.jpeg" alt="image" />
<div class="container">
<div class="carousel-caption">
<h2>Promoting career guidance to the fullest</h2>
<p>
Don’t worry about trying to please everyone. Focus on yourself..
</p>
<p>
<a class="btn btn-lg btn-primary" href="#par">Learn More</a>
</p>
</div>
</div>
</div>
</div>
<a
class="carousel-control-prev"
href="#myCarousel"
role="button"
data-slide="prev"
>
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
<span class="sr-only">Previous</span>
</a>
<a
class="carousel-control-next"
href="#myCarousel"
role="button"
data-slide="next"
>
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="sr-only">Next</span>
</a>
</div>
<section class="introd">
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="fluid">
<p id="par">
Career interests are your preferences regarding work activities
and environment. Identifying your career interest helps you make
a well-informed and more strategic decision on your career
path.<br />
Following your career interest means your are pursuing a career
that uses your talents and aligns with your passion and
preferences. Understanding and being able to determine your
passion helps you find fulfillment and success in your chosen
profession.<br />
In this webpage we provide tools that will enable you make the
right career decisions.
</p>
</div>
</div>
</div>
<div class="row">
<div class="col-md-12">
<div class="header">
<h2 id="one">
Let us know <span class="h"> about your interests....</span>
</h2>
</div>
</div>
</div>
</div>
</section>
<section class="mycourse">
<div class="container" id="table">
<div class="row">
<div class="col-md-12">
<div class="content">
<div class="business">
<h3 id="one">Business</h3>
<div id="course1">
<button class="btn">Business & Commerce</button>
<button class="btn">Business Management</button>
<button class="btn">Business & IT</button>
<button class="btn">Accounting</button>
<button class="btn" id="itB">Business Administration</button>
</div>
</div>
<hr />
<div class="tech">
<h3 id="two">Technology</h3>
<div id="course2">
<button class="btn">Computer Science</button>
<button class="btn">Software Engineering</button>
<button class="btn">Computer Systems Engineering</button>
<button class="btn">Data Science</button>
<button class="btn" id="itA">Information Technology</button>
</div>
</div>
<hr />
<div class="lang">
<h3 id="three">Economics</h3>
<div id="course3">
<button class="btn" id="acc">Accounting</button>
<button class="btn">Financial Engineering</button>
<button class="btn">Commerce</button>
<button class="btn">Banking and Finance</button>
<button class="btn">Real Estate</button>
</div>
</div>
<hr />
<div class="engine">
<h3 id="four">Engineering</h3>
<div id="course4">
<button class="btn">Mechanical Engineering</button>
<button class="btn">Electrical Engineering</button>
<button class="btn" id="ENG">
Mechatronical Engineering
</button>
<button class="btn">Civil Engineering</button>
<button class="btn">Water Engineering</button>
</div>
</div>
<hr />
<div class="human">
<h3 id="five">Humanities</h3>
<div id="course5">
<button class="btn" id="itC">Land Survey</button>
<button class="btn">Geospatial Engineering</button>
<button class="btn">History</button>
<button class="btn">Religious Studies</button>
<button class="btn">Space Exploration</button>
</div>
</div>
<hr />
<div class="art">
<h3 id="six">Arts</h3>
<div id="course6">
<button class="btn" id="econ">Home Economics</button>
<button class="btn" id="prods">Product Design</button>
<button class="btn">Videography</button>
<button class="btn">Interior Design</button>
<button class="btn">Music Production</button>
</div>
</div>
<hr />
</div>
</div>
</div>
</div>
</section>
<!--Information Technology section-->
<section id="IT">
<section class="courses">
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="card" id="start">
<div class="card-header">
COURSE DETAILS:
<span id="specific">INFORMATION TECHNOLOGY</span>
</div>
<div class="card-body">
<h4 class="card-title">WHAT DOES AN IT CAREER ENTAIL?</h4>
<p class="card-text">
Information technology (IT) involves the use of computers,
storage and networking devices to create, process, store,
share and secure electronic data. It is a fast-growing
field, due largely to the high demand for IT services across
all industries. IT degree programs prepare students to earn
potentially lucrative salaries while working for IT
departments and consulting firms. The median annual wage for
IT careers was $81,430 in May 2015, according to the U.S.
Bureau of Labor Statistics, considerably higher than that
for all occupations. Read more to learn how to get started
in the field of IT, from the various types of careers
available to the degrees necessary to secure employment.
</p>
<p>
Information technology degree programs vary widely depending
on the institution issuing the credential. From traditional
colleges and universities to accredited online and distance
learning degree programs, educational opportunities are
available to suit nearly any budget or schedule. Some
schools offer certificate courses in specialized areas of
information technology. Others offer associate, bachelor’s,
or master’s degree programs designed to produce well-rounded
students with broad-based knowledge in many different areas
of information technology.
</p>
<p>
If you are looking for information technology degree
programs, you’ll find both on-campus and distance-based
choices. An online program could be a good choice if you
want to enroll in a school that is far away, but not move
from where you live. In fact, online information technology
degrees come in many different shapes and sizes. These
include hybrid programs, which are a blend of campus-based
and distance learning courses, fully online programs,
accelerated online options and even joint degree programs.
Most online information technology degree programs also use
an interactive learning management system that allows you to
submit assignments, ask questions and have discussions with
other students.
</p>
<p>
If you are looking for information technology degree
programs, you’ll find both on-campus and distance-based
choices. An online program could be a good choice if you
want to enroll in a school that is far away, but not move
from where you live. In fact, online information technology
degrees come in many different shapes and sizes. These
include hybrid programs, which are a blend of campus-based
and distance learning courses, fully online programs,
accelerated online options and even joint degree programs.
Most online information technology degree programs also use
an interactive learning management system that allows you to
submit assignments, ask questions and have discussions with
other students.
</p>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="unis">
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="card" id="second">
<div class="card-header">UNIVERSITIES:</div>
<div class="card-body">
<table class="table table-hover">
<thead id="top">
<tr>
<th scope="col">No.</th>
<th scope="col">University</th>
<th scope="col">Location</th>
<th scope="col">Website</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">1</th>
<td>Nairobi University</td>
<td>Nairobi</td>
<td>
<a href="https://www.uonbi.ac.ke/" target="self"
>University Of Nairobi</a
>
</td>
</tr>
<tr>
<th scope="row">2</th>
<td>Mount kenya university</td>
<td>Nakuru</td>
<td>
<a href="https://www.mku.ac.ke/" target="self"
>Mount Kenya University</a
>
</td>
</tr>
<tr>
<th scope="row">3</th>
<td>Multimedia University of Kenya</td>
<td>Rongai</td>
<td>
<a href="https://www.mmu.ac.ke/" target="self"
>Multimedia University Of Kenya</a
>
</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="last">
<div class="container">
<div class="row">
<div class="col-md-6">
<div
class="card text-white mb-3"
id="third"
style="max-width: 35rem"
>
<div class="card-header" id="hh">
Complimentary Cerfifications
</div>
<div class="card-body">
<ol>
<li>
<h5 class="card-title">
Cisco Certified Network Associate (CCNA)
</h5>
</li>
<li>
<h5 class="card-title">
Microsoft technology associate (MTA)
</h5>
</li>
<li><h5 class="card-title">CompTIA Security+</h5></li>
<li>
<h5 class="card-title">
Google IT Support Professional Certificate
</h5>
</li>
</ol>
</div>
</div>
</div>
<div class="col-md-6">
<div
class="card text-white mb-3"
id="third"
style="max-width: 35rem"
>
<div class="card-header" id="hh">External Resources</div>
<div class="card-body">
<ol>
<li>
<a
href="https://www.youtube.com/watch?v=uxfTmqyeiro"
target="self"
><h5 class="card-title">
Why study Information Technology
</h5></a
>
</li>
<li>
<a
href="https://www.youtube.com/watch?v=2WB6RcY0MPc"
target="self"
><h5 class="card-title">
Things to know before venturing into it
</h5></a
>
</li>
<li>
<a
href="https://www.youtube.com/watch?v=D4AnFvwJ-eA"
target="self"
><h5 class="card-title">
What is Information Technology?
</h5></a
>
</li>
<li>
<a
href="https://www.youtube.com/watch?v=QwNgzAgm6hY"
target="self"
><h5 class="card-title">IT in general</h5></a
>
</li>
</ol>
</div>
</div>
</div>
</div>
</div>
</section>
</section>
<!--Closing IT section-->
<!--Business Administration Section-->
<section id="BA">
<section class="courses">
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="card" id="start">
<div class="card-header">
COURSE DETAILS:
<span id="specific">BUSINESS ADMINISTRATION</span>
</div>
<div class="card-body">
<h4 class="card-title">WHAT DOES AN IT CAREER ENTAIL?</h4>
<p class="card-text">
<em> Bachelor of Business Administration (BBA) degree </em>
is designed to provide in-depth knowledge of a wide-range of
aspects related to business operations. The program's core
curriculum typically covers topics, such as accounting,
marketing, finance, and more. The degree degree can take up
to four years or more to cover at a traditional college, but
can be earned much faster in an accelerated program. As a
graduate, you could possess critical thinking skills and
practical knowledge of one or more areas of specialty. The
program aims to provide you with an opportunity to learn
from instructors with extensive experience in business
administration. Additionally, the course gives you a chance
to connect with like-minded individuals from various walks
of life.
</p>
<h4>Career Objectives</h4>
<p>
Enrolling in the BBA program you can learn more about
business theory and its real-world applications. In the end,
you could gain an understanding of various aspects of
business administration, including:
</p>
<ul>
<li>
Developing strategic plans using marketing information
</li>
<li>
Understand the role of information technology systems (IT)
in supporting business operations
</li>
<li>
Learn how to solve organizational problems using human
resources and management principles
</li>
<li>
Understand how to use data tools to gather business
intelligence. Proceed to use the information to make key
operational decisions
</li>
<li>Learn to apply critical thinking concepts</li>
<li>
Develop the ability to apply financial management
principles to ensure viability
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="unis">
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="card" id="second">
<div class="card-header">UNIVERSITIES:</div>
<div class="card-body">
<table class="table table-hover">
<thead id="top">
<tr>
<th scope="col">No.</th>
<th scope="col">University</th>
<th scope="col">Location</th>
<th scope="col">Website</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">1</th>
<td>KCA university</td>
<td>Nairobi, Ruaraka Campus</td>
<td>
<a href="https://www.kca.ac.ke/" target="self"
>KCA University</a
>
</td>
</tr>
<tr>
<th scope="row">2</th>
<td>St Paul's University</td>
<td>Limuru</td>
<td>
<a href="https://www.spu.ac.ke/new/" target="self"
>St. Paul's University</a
>
</td>
</tr>
<tr>
<th scope="row">3</th>
<td>Daystar University</td>
<td>Mombasa road, Athi river</td>
<td>
<a href="https://www.daystar.ac.ke/" target="self"
>Daystar University</a
>
</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="last">
<div class="container">
<div class="row">
<div class="col-md-6">
<div
class="card text-white mb-3"
id="third"
style="max-width: 35rem"
>
<div class="card-header" id="hh">
Complimentary Cerfifications
</div>
<div class="card-body">
<ol>
<li><h5 class="card-title">Advanced Certificate</h5></li>
<li>
<h5 class="card-title">Postgraduate Certificate</h5>
</li>
<li><h5 class="card-title">Graduate Certificate</h5></li>
<li>
<h5 class="card-title">Undergraduate Certificate</h5>
</li>
<li><h5 class="card-title">Certificate</h5></li>
</ol>
</div>
</div>
</div>
<div class="col-md-6">
<div
class="card text-white mb-3"
id="third"
style="max-width: 35rem"
>
<div class="card-header" id="hh">External Resources</div>
<div class="card-body">
<ol>
<li>
<a
href="https://www.youtube.com/watch?v=T46zV_k4Ato"
target="self"
><h5 class="card-title">
What are the benefits of studying Business
Administration
</h5></a
>
</li>
<li>
<a
href="https://www.youtube.com/watch?v=UtbfATNSePk"
target="self"
><h5 class="card-title">
What is Business Administration
</h5></a
>
</li>
<li>
<a
href="https://www.youtube.com/watch?v=jMIa9SJiFb8"
target="self"
><h5 class="card-title">
Complete Career Guide and Career Insight
</h5></a
>
</li>
<li>
<a
href="https://www.youtube.com/watch?v=O0-jJJF6WBo"
target="self"
><h5 class="card-title">
Thoughts On a Business Administration Degree
</h5></a
>
</li>
</ol>
</div>
</div>
</div>
</div>
</div>
</section>
</section>
<!--Closing BA section-->
<!--Geospatial section-->
<section id="LA">
<section class="courses">
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="card" id="start">
<div class="card-header">
COURSE DETAILS: <span id="specific">LAND SURVEY</span>
</div>
<div class="card-body">
<h4 class="card-title">WHAT DOES AN IT CAREER ENTAIL?</h4>
<p class="card-text">
<em> Bachelor of Business Administration (BBA) degree </em>
The Geospatial Sciences (Building Information Modelling) MSc
teaches students the theory, tools and techniques for
working with geospatial data, from acquisition to processing
to analysis. Students have the opportunity to engage and
work with academics and industrial partners on cutting-edge
research through seminars and a dissertation. The specialist
Building Information Modelling (BIM) programme will educate
students in the geometric and semantic aspects of BIM and
the integrated management of geospatial and BIM-related
data. This includes principles of surveying, 3D reality
capture, a general overview of technologies related to
mapping sciences, geo-information science and 3D geometric
modelling.
<br />
<strong>Careers</strong>
<br />
Students graduating with a degree in Geospatial Sciences
(Building Information Modelling) will be equipped for a
diverse range of roles, including BIM or surveying manager,
geospatial data scientist, geospatial software developer and
consultant. Graduates go on to work for a variety of
organisations including major infrastructure projects,
engineering consultancies, geospatial software companies and
national mapping agencies. Our students establish strong
links with industry through the industrial seminar series
and industrial research projects. Additionally, many
graduates from our programmes go on to PhD research at UCL
or elsewhere.
<br />
<strong>Employability</strong>
<br />
Students will gain a range of technical skills in geospatial
science that are highly valued by employers, including the
use of specialist software for surveying, Reality Capture,
BIM and GIS (e.g. Cyclone, PhotoScan, Revit, QGIS, FME);
programming, web and software development (e.g. Python, R,
MATLAB); geospatial data processing and management;
geospatial data visualisation and analysis.
</p>
<h4>Career Objectives</h4>
<p>
The areas in which the knowledge and technology of Surveying
are today applied include:
</p>
<ul>
<li>
Precise determination of the figure of the earth and of
other planets in the solar system
</li>
<li>Measurement and mapping of topography</li>
<li>
Measurement and determination of orbits of artificial
satellites
</li>
<li>
Measurement and determination of the dynamics of the
earths crust
</li>
<li>
Determination and analysis of the earths gravity field
</li>
<li>
Precise positioning on, or near, the earths surface using
both terrestrial and satellite technology techniques
</li>
<li>
Navigation and guidance of craft using satellite and
inertial navigation systems technology
</li>
<li>
Vehicle tracking and intelligent transport systems (ITS)
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="unis">
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="card" id="second">
<div class="card-header">UNIVERSITIES:</div>
<div class="card-body">
<table class="table table-hover">
<thead id="top">
<tr>
<th scope="col">No.</th>
<th scope="col">University</th>
<th scope="col">Location</th>
<th scope="col">Website</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">1</th>
<td>University Of Nairobi</td>
<td>Nairobi, Ruaraka Campus</td>
<td>
<a href="https://www.uonbi.ac.ke/" target="self"
>University Of Nairobi</a
>
</td>
</tr>
<tr>
<th scope="row">2</th>
<td>Technical University Of Kenya</td>
<td>Limuru</td>
<td>
<a href="http://tukenya.ac.ke/" target="self"
>Technical University Of Kenya</a
>
</td>
</tr>
<tr>
<th scope="row">3</th>
<td>JKUAT University</td>
<td>Juja</td>
<td>
<a href="http://www.jkuat.ac.ke/" target="self"
>JKUAT University</a
>
</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="last">
<div class="container">
<div class="row">
<div class="col-md-6">
<div
class="card text-white mb-3"
id="third"
style="max-width: 35rem"
>
<div class="card-header" id="hh">
Complimentary Cerfifications
</div>
<div class="card-body">
<ol>
<li><h5 class="card-title">Advanced Certificate</h5></li>
<li>
<h5 class="card-title">Postgraduate Certificate</h5>
</li>
<li><h5 class="card-title">Graduate Certificate</h5></li>
<li>
<h5 class="card-title">Undergraduate Certificate</h5>
</li>
<li><h5 class="card-title">Certificate</h5></li>
</ol>
</div>
</div>
</div>
<div class="col-md-6">
<div
class="card text-white mb-3"
id="third"
style="max-width: 35rem"
>
<div class="card-header" id="hh">External Resources</div>
<div class="card-body">
<ol>
<li>
<a
href="https://www.youtube.com/watch?v=Zgsi2bTKEV8"
target="self"
><h5 class="card-title">
Geospatial Information Career Video
</h5></a
>
</li>
<li>
<a
href="https://www.youtube.com/watch?v=pHr1uDXlQtM"
target="self"
><h5 class="card-title">
What is Geospatial Engineering
</h5></a
>
</li>
<li>
<a
href="https://www.youtube.com/watch?v=krQmas719fg"
target="self"
><h5 class="card-title">
Complete Career Guide and Career Insight
</h5></a
>
</li>
</ol>
</div>
</div>
</div>
</div>
</div>
</section>
</section>
<!--Closing LA section-->
<!--Accounting section-->
<section id="accounting">
<section class="courses">
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="card" id="start">
<div class="card-header">
COURSE DETAILS: <span id="specific">ACCOUNTING</span>
</div>
<div class="card-body">
<h4 class="card-title">
WHAT DOES AN ACCOUNTING CAREER ENTAIL?
</h4>
<p class="card-text">
An accounting course will teach, besides accounting focused
subjects, business mathematics, management theory and
business economics and law. An accounting graduate will be
able to work in different fields of accounting such as
managerial accounting, financial accounting, taxation and
auditing. A Bachelor in accounting provides an understanding
of perspectives that form the context for business and
financial management. It is a rigorous programme that
prepares students for profesional accountancy roles and
business & public sector management roles.
</p>
<p>
It includes a strong international element and considers the
essential, underlying theory and concepts that are involved
in the accounting sector on a global level, exploring
accounting procedures in organizations around the world. As
the world's economy keep growing there wil be an
ever-increasing need for quality accounting and auditing of
private sector and public sector institutions and their
activities, with this you are assured of the many
opportunities you are going to have once you complete your
learning.
</p>
<p>
The aim of the Bachelor of Science in Accounting is to
prepare students for entry into a variety of fields in
accountancy, including corporate accounting, accounting
information systems, and governmental accounting. Graduates
will gain detailed knowledge of financial accounting and
financial reporting.
</p>
<p>
If you are planning for to pursue a course in accounting it
as advisable to consider to pertaking the accounting
certifications which increases your career opportunities,
qualifies you for more positions and also increase your
earing potential. If you consider obtaining an accounting
certification, expoloring some of the more popular ones can
help you determine which is the best fit for you.
</p>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="unis">
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="card" id="second">
<div class="card-header">UNIVERSITIES:</div>
<div class="card-body">
<table class="table table-hover">
<thead id="top">
<tr>
<th scope="col">No.</th>
<th scope="col">University</th>
<th scope="col">Location</th>
<th scope="col">Website</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">1</th>
<td>Strathmore University</td>
<td>Nairobi</td>
<td><a href="https://strathmore.edu/" target="self">Strathmore University</a></td>
</tr>
<tr>
<th scope="row">2</th>
<td>KCA university</td>
<td>Nairobi</td>
<td> <a href="https://www.kca.ac.ke/" target="self"
>KCA University</a
></td>
</tr>
<tr>
<th scope="row">3</th>
<td>University of Nairobi</td>
<td>Nairobi</td>
<td><a href="https://www.uonbi.ac.ke/" target="self"
>University Of Nairobi</a
></td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="last">
<div class="container">
<div class="row">
<div class="col-md-6">
<div
class="card text-white mb-3"
id="third"
style="max-width: 35rem"
>
<div class="card-header" id="hh">
Complimentary Cerfifications
</div>
<div class="card-body">
<ol>
<li>
<h5 class="card-title">
Certified Public Accountant (CPA)
</h5>
</li>
<li>
<h5 class="card-title">
Certfied Financial Analyst (CFA)
</h5>
</li>