-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1071 lines (1040 loc) · 59.5 KB
/
index.html
File metadata and controls
1071 lines (1040 loc) · 59.5 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
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 http-equiv="Content-Type" content="text/html; charset=utf-8">
<!-- All Meta -->
<meta http-equiv="x-ua-compatible" content="ie=edge">
<meta name="description" content="CodeHappy - Python Training in the Philippines">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- page title -->
<title>CodeHappy - Python Training in the Philippines</title>
<!-- Favicon Icon -->
<link rel="shortcut icon" href="assets/images/favicon.ico" type="image/png">
<!-- All css -->
<!--Bootstrap css-->
<link rel="stylesheet" href="assets/css/bootstrap.min.css">
<!-- Fontawesome css -->
<link rel="stylesheet" href="assets/fonts/fontawesome/css/all.css">
<!-- slick fader css -->
<link rel="stylesheet" href="assets/css/slick.css">
<link rel="stylesheet" href="assets/css/slick-theme.css">
<!-- sidebar-menu -->
<link rel="stylesheet" href="assets/css/sidebar-menu.css">
<!--animate css-->
<link rel="stylesheet" href="assets/css/animate.css">
<!--Owl css-->
<link rel="stylesheet" href="assets/owl-carousel/owl.carousel.min.css">
<link rel="stylesheet" href="assets/owl-carousel/owl.theme.default.min.css">
<!--video css-->
<link rel="stylesheet" href="assets/css/grt-youtube-popup.css">
<!--style css-->
<link rel="stylesheet" href="assets/css/style.css">
<script>
function includeHTML() {
var z, i, elmnt, file, xhttp;
/* Loop through a collection of all HTML elements: */
z = document.getElementsByTagName("*");
for (i = 0; i < z.length; i++) {
elmnt = z[i];
/*search for elements with a certain atrribute:*/
file = elmnt.getAttribute("w3-include-html");
if (file) {
/* Make an HTTP request using the attribute value as the file name: */
xhttp = new XMLHttpRequest();
xhttp.onreadystatechange = function() {
if (this.readyState == 4) {
if (this.status == 200) {elmnt.innerHTML = this.responseText;}
if (this.status == 404) {elmnt.innerHTML = "Page not found.";}
/* Remove the attribute, and call this function once more: */
elmnt.removeAttribute("w3-include-html");
includeHTML();
}
}
xhttp.open("GET", file, true);
xhttp.send();
/* Exit the function: */
return;
}
}
}
</script>
</head>
<body>
<!-- Preloader -->
<div class="preloader">
<div class="lds-ripple">
<div></div>
<div></div>
</div>
</div>
<!-- Start header_area -->
<header class="header_area header_v1 transparent_header">
<!-- <div class="ribbon">
<a href="https://ti.to/codehappyph/public-data-processing-python-workshop" class="ribbon-link">
<strong>April 2024 Cohort - CodeHappy Python Data Processing Workshop</strong>. Enroll Now! Classes start April 6!
</a>
</div> -->
<!-- Navigation Menu Below -->
<nav>
<!-- Your navigation links here -->
</nav>
<div class="container">
<div class="site_menu">
<div class="row align-items-center">
<div class="col-lg-2">
<div class="brand">
<a href="index.html" class="logo"><img src="assets/images/codehappy-logo-small.png" class="img-fluid" alt=""></a>
</div>
</div>
<div class="col-lg-10">
<div class="primary_menu" id="menu">
<nav class="main_menu">
<ul>
<!-- <li class="menu-item active_link"><a href="index.html">Home</a>
</li> -->
<li class="menu-item"><a href="index.html">Home</a>
</li>
<li class="menu-item"><a href="#about-us">About Us</a>
</li>
<li class="menu-item"><a href="#services">Services</a>
<ul class="sub-menu">
<li class="menu-item"><a href="#what-we-do">What We Do</a></li>
<li class="menu-item"><a href="#courses">Training Courses</a></li>
</ul>
</li>
<li class="menu-item"><a href="#why-us">Why Choose Us?</a>
<ul class="sub-menu">
<li class="menu-item"><a href="#why-us">Why Choose Us?</a></li>
<li class="menu-item"><a href="#values">Our Values</a></li>
</ul>
</li>
<li class="menu-item"><a href="#team">Our Team</a>
</li>
<!-- <li class="menu-item"><a href="service.html">Services</a></li>
<li class="menu-item"><a href="portfolio.html">Portfolio</a>
<ul class="sub-menu">
<li><a href="portfolio.html">Portfolio</a></li>
<li><a href="portfolio-details.html">Portfolio Details</a></li>
</ul>
</li>
<li class="menu-item"><a href="#">Blog</a>
<ul class="sub-menu">
<li class="menu-item"><a href="blog.html">Blog</a></li>
<li class="menu-item"><a href="blog-details.html">Blog Details</a></li>
</ul>
</li>
<li class="menu-item"><a href="contact.html">Contact Us</a></li> -->
<li class="menu-item"><a href="mailto:hello@codehappy.ph?subject=I'd like to work with you" class="deneb_btn">Contact Us</a></li>
</ul>
</nav>
</div>
</div>
</div>
</div>
<div class="mobile_wrapper">
<div class="mobile_header">
<div class="row align-items-center">
<div class="col-6">
<div class="brand_logo">
<a href="#"><img src="assets/images/codehappy-logo-small.png" class="img-fluid" alt=""></a>
</div>
</div>
<div class="col-6">
<div class="menu_button">
<div class="menu_icon">
<span></span>
<span></span>
<span></span>
</div>
</div>
</div>
</div>
</div>
<div class="sidenav_menu">
<div class="close_icon">
<a href="#" class="close_btn"><i class="fas fa-times"></i></a>
</div>
<ul class="sidebar-menu">
<!-- <li class="menu-item"><a href="index.html">Home</a>
</li> -->
<li class="menu-item"><a href="#about-us">About Us</a>
</li>
<li class="menu-item"><a href="#services">Services</a>
<ul class="sub-menu">
<li class="menu-item"><a href="#what-we-do">What We Do</a></li>
<li class="menu-item"><a href="#courses">Training Courses</a></li>
</ul>
</li>
<li class="menu-item"><a href="#why-us">Why Choose Us?</a>
<ul class="sub-menu">
<li class="menu-item"><a href="#why-us">Why Choose Us?</a></li>
<li class="menu-item"><a href="#values">Our Values</a></li>
</ul>
</li>
<li class="menu-item"><a href="#team">Our Team</a>
</li>
<!-- <li class="menu-item"><a href="service.html">Services</a></li>
<li class="menu-item"><a href="portfolio.html">Portfolio</a>
<ul class="sub-menu">
<li><a href="portfolio.html">Portfolio</a></li>
<li><a href="portfolio-details.html">Portfolio Details</a></li>
</ul>
</li>
<li class="menu-item"><a href="blog.html">Blog</a>
<ul class="sub-menu">
<li><a href="blog.html">Blog</a></li>
<li><a href="blog-details.html">Blog Details</a></li>
</ul>
</li>
<li class="menu-item"><a href="contact.html">Contact Us</a></li> -->
<li class="menu-item"><a href="mailto:hello@codehappy.ph?subject=I'd like to work with you" class="deneb_btn">Hire Us</a></li>
</ul>
</div>
</div>
</div>
</header><!-- End header_area -->
<!-- Hero Start -->
<section class="hero-three">
<div class="container">
<div class="row align-items-center">
<div class="col-lg-5 col-sm-6">
<div class="banner_content wow fadeInLeft">
</br>
</br>
</br>
</br>
</br>
</br>
</br>
</br>
<h2 class="mb-4">Hone your<span> craft.</span></br>Love what you<span> do.</span></h2>
<p class="mb-5">
<strong>Python training that targets your needs</strong>. We focus on <span>practical data skills</span> and <span>key software engineering</span> expertise.
</p>
<a href="https://calendly.com/codehappy-mickey/15min-call" class="deneb_btn">Book a free consultation</a>
</div>
</div>
<div class="col-lg-7 col-sm-6">
<img src="assets/images/hero-launch.png" class="img-fluid wow fadeInUp" alt="product-launch">
</div>
</div>
</div>
</section>
<!-- Hero End -->
<!-- About Start -->
<section id="about-us" class="about-three py-5">
<div class="container py-lg-5 py-md-4 py-sm-4 py-0">
<div class="row align-items-center">
<div class="col-lg-6 img">
<img src="assets/images/about-us.png" class="img-fluid" alt="designer">
</div>
<div class="col-lg-6 pl-lg-5">
<h6>ABOUT US</h6>
<h4 class="mt-3 mb-4">We’re a small team of Software Engineers from the Philippines with over a decade of industry experience and an <strong>insane love for what we do.</strong></h4>
<p>We are a grassroots business built as a result of our passion for learning and teaching.</p>
<p></br>We have trained and coached software engineers in the telecoms, fintech, and outsourcing industries, and the Philippine Navy.</p>
<h5 class="mt-3 mb-4"></br>So what's our story?</h5>
<p>It started at a point when we became in charge of hiring new people for our dev teams. It was when we noticed a <strong>shortage of tech talents with the right skills</strong>.
</p>
<p></br>Realizing that a <strong>key problem lies with the huge gap between the academe and the industry</strong>, we developed training and coaching programs to fill those gaps.
</p>
<p></br>Since then, we made it our personal mission to teach practical software development skills for tech professionals and leaders in the Philippines.
</p>
<p></br><strong>Tech is a very democratizing career</strong> and <strong>skills pay the bills</strong>. Our goal is to <strong>empower</strong> individuals with the <strong>right skills and mindset</strong> for honing their craft and helping them succeed.
</p>
<p></br>We believe <strong>skills truly fulfill their potential and purpose</strong> when <strong>paired with passion</strong>. That's why we're called CodeHappy.
</p>
</div>
</div>
<!-- <div class="row mt-lg-5 mt-4 py-3 text-center counters">
<div class="col-lg-3 col-md-6">
<div class="count p-4 wow fadeInUp">
<img src="assets/images/icon_7.png" class="img-fluid" alt="">
<h2 class="mt-3 mb-2"><span class="count-num">300</span>+</h2>
<p>Projects Done</p>
</div>
</div>
<div class="col-lg-3 col-md-6">
<div class="count p-4 wow fadeInUp">
<img src="assets/images/icon_8.png" class="img-fluid" alt="">
<h2 class="mt-3 mb-2"><span class="count-num">250</span>+</h2>
<p>Happy Customers</p>
</div>
</div>
<div class="col-lg-3 col-md-6">
<div class="count p-4 wow fadeInUp">
<img src="assets/images/icon_9.png" class="img-fluid" alt="">
<h2 class="mt-3 mb-2"><span class="count-num">200</span>+</h2>
<p>Active Projects</p>
</div>
</div>
<div class="col-lg-3 col-md-6">
<div class="count p-4 wow fadeInUp">
<img src="assets/images/icon_10.png" class="img-fluid" alt="">
<h2 class="mt-3 mb-2"><span class="count-num">5</span>+</h2>
<p>Years Exerience</p>
</div>
</div>
</div> -->
</div>
</section>
<!-- About End -->
<!-- Service Start -->
<section id="services" class="service-three py-5">
<div id="what-we-do" class="container py-lg-5 py-md-4 py-sm-4 py-0">
<div class="row text-center">
<div class="col-lg-7 mx-auto">
<h6>Services</h6>
<h3 class="mt-3 mb-lg-5 mb-md-4 mb-sm-4 mb-3">What We Do</h3>
</div>
</div>
<div class="row">
<div class="col-lg-6 wow fadeInUp">
<div class="d-flex flex-row justify-content-center">
<div>
<div class="icon icon-svg mr-4"><img src="assets/images/icon-training.png" alt=""></div>
</div>
<div>
<h4 class="mb-2">Workshops</h4>
<p>We offer packaged 1-3 day workshops for Core Python Development, Python Data Processing, Python Web Development, Linux Essentials, Git Essentials
</p>
</div>
</div>
</div>
<div class="col-lg-6 wow fadeInUp">
<div class="d-flex flex-row justify-content-center">
<div class="icon icon-svg mr-4"><img src="assets/images/gear-icon.png" alt=""></div>
<div>
<h4 class="mb-2">Custom Training</h4>
<p>CodeHappy can be engaged in developing custom training for your team. Our expertise lies in all things Linux and Python. It’s a broad range but it is basically anything within the spectrum of how Linux and Python is utilized in software engineering. We can talk about what your team needs and we can come up with the right course offering.
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Service End -->
<!-- Start deneb_service section -->
<section class="service_wrapper">
<div id="courses" class="container">
<div class="row text-center">
<div class="col-lg-7 mx-auto">
<!-- <h6>Services</h6> -->
<h3 class="mt-3 mb-lg-5 mb-md-4 mb-sm-4 mb-3">Training Courses</h3>
</div>
</div>
<div class="row">
<div class="col-lg-12">
<div class="service_tab_wrap">
<div class="service_tab_nav">
<ul class="nav nav-tabs">
<li class="nav-item">
<a class="nav-link" data-toggle="tab" href="#python-quickstart"><img src="assets/images/quickstart-icon.png" alt=""><span>Python Quickstart</span></a>
</li>
<!-- <li class="nav-item">
<a class="nav-link" data-toggle="tab" href="#programming-primer"><img src="assets/images/gem-icon.png" alt=""><span>Programming Primer</span></a>
</li>-->
<li class="nav-item">
<a class="nav-link" data-toggle="tab" href="#python-fundamentals"><img src="assets/images/brain-icon.png" alt=""><span>Python Fundamentals</span></a>
</li>
<li class="nav-item">
<a class="nav-link active" data-toggle="tab" href="#python-data-processing"><img src="assets/images/data-processing-icon.png" alt=""><span>Data Processing with Python</span></a>
</li>
<li class="nav-item">
<a class="nav-link" data-toggle="tab" href="#linux-and-git"><img src="assets/images/bash-script-git-icon.png" alt=""><span>Linux & Git Essentials</span></a>
</li>
<li class="nav-item">
<a class="nav-link" data-toggle="tab" href="#unit-testing"><img src="assets/images/testing-icon.png" alt=""><span>Unit Testing in Python</span></a>
</li>
<!-- <li class="nav-item">
<a class="nav-link" data-toggle="tab" href="#marketing"><img src="assets/images/icon_15.png" alt=""><span>Digital Marketing</span></a>
</li>
<li class="nav-item">
<a class="nav-link" data-toggle="tab" href="#analysis"><img src="assets/images/icon_16.png" alt=""><span>Business Analysis</span></a>
</li> -->
</ul>
</div>
<!-- Tab panes -->
<div class="tab-content">
<div id="python-quickstart" class="tab-pane">
<div class="row align-items-center">
<div class="col-lg-6">
<div class="deneb_content_box">
<h2>Python Quickstart</h2>
<p>A brown-bag session that aims to give a quick introduction to the basics of Python and its many possibilities</p>
<p>Brown-bag session Goals:
<ul>
<li><i class="fas fa-check"></i> Give you a quick introduction of Python, an overview of its use-cases and its ecosystem</li>
<li><i class="fas fa-check"></i> Get you started coding in Python</li>
<li><i class="fas fa-check"></i> Inspire participants to use Python for work and hobby projects</li>
</ul>
</p>
<p>Prerequisite: None</p>
<p>Duration: 1-hour</p>
</div>
</div>
<div class="col-lg-6">
<div class="deneb_img_box">
<img src="assets/images/python-quickstart.png" class="img-fluid" alt="">
</div>
</div>
</div>
</div>
<div id="python-fundamentals" class="tab-pane fade">
<div class="row align-items-center">
<div class="col-lg-6">
<div class="deneb_content_box">
<h2>Python Fundamentals</h2>
<p>This workshop is designed to introduce participants to the world of programming through Python, one of the most versatile and widely-used languages in the industry.</p>
<p>Over the course of two days, participants will be guided through the foundational elements of Python and then progress to more advanced topics, all while building a practical project.
</p>
<p>The workshop will be interactive, featuring quizzes, exercises, and Q&A sessions.
</p>
<p>Workshop Goals:
<ul>
<li><i class="fas fa-check"></i> Understand Python's Place in Today's World</li>
<li><i class="fas fa-check"></i> Hands-on Experience in setting up, creating, and executing Python programs.</li>
<li><i class="fas fa-check"></i> Solid Understanding of key data types, variables, and strong typing principles.</li>
<li><i class="fas fa-check"></i> Develop and Refine a Practical Python Project from Scratch.</li>
<li><i class="fas fa-check"></i> Gain Advanced Techniques (modular coding with functions and file management)</li>
<li><i class="fas fa-check"></i> Confidence in Tackling Real-world Python Challenges.<li>
</ul>
</p>
<p>Prerequisite: None</p>
<p>Duration: 2-days @ 6hrs/day</p>
</div>
</div>
<div class="col-lg-6">
<div class="deneb_img_box">
<img src="assets/images/python-fundamentals2.png" class="img-fluid" alt="">
</div>
</div>
</div>
</div>
<div id="python-data-processing" class="tab-pane active">
<div class="row align-items-center">
<div class="col-lg-6">
<div class="deneb_content_box">
<h2>Data Processing with Python</h2>
<p>This comprehensive workshop provides a deep dive into the fundamentals of data processing, with a special focus on data manipulation using the Python programming language.</p>
<p>Participants will gain practical experience by working with a variety of real-world data types, and will be equipped with the skills and confidence to initiate their own data processing projects.</p>
<p>The workshop also introduces basic data visualization techniques and demonstrates the use of AI tools like ChatGPT to assist in coding.</p>
<p>Workshop Goals:
<ul>
<li><i class="fas fa-check"></i> Understand the Basics of Data Processing</li>
<li><i class="fas fa-check"></i> Practical Python Skills for Data Manipulation</li>
<li><i class="fas fa-check"></i> Hands-On Experience with Real-World Data</li>
<li><i class="fas fa-check"></i> Confidence in Starting Your Own Data Processing Projects</li>
<li><i class="fas fa-check"></i> Basic Data Visualization Skills</li>
<li><i class="fas fa-check"></i> Leverage AI Tools for Coding</li>
</ul>
</p>
<p>Prerequisite: None</p>
<p>Duration: 2-days</p>
</div>
</div>
<div class="col-lg-6">
<div class="deneb_img_box">
<img src="assets/images/data-processing.png" class="img-fluid" alt="">
</div>
</div>
</div>
</div>
<div id="linux-and-git" class="tab-pane fade">
<div class="row align-items-center">
<div class="col-lg-6">
<div class="deneb_content_box">
<h2>Linux & Git Essentials</h2>
<p>This course aims to equip the students with skills needed to understand how to work in a Linux environment and utilize version control in their software projects.
</p>
<p>Prerequisite: None</p>
<p>Duration: 3-days @ 6hrs/day</p>
</div>
</div>
<div class="col-lg-6">
<div class="deneb_img_box">
<img src="assets/images/linux-and-git.png" class="img-fluid" alt="">
</div>
</div>
</div>
</div>
<div id="unit-testing" class="tab-pane fade">
<div class="row align-items-center">
<div class="col-lg-6">
<div class="deneb_content_box">
<h2>Unit Testing in Python</h2>
<p>This course aims to introduce unit testing using the pytest library as part of a developer’s workflow and imparts an attitude towards delivering quality software that meets business objectives.</p>
<p>Prerequisite: Python Fundamentals</p>
<p>Duration: 1-day @ 6hrs/day</p>
</div>
</div>
<div class="col-lg-6">
<div class="deneb_img_box">
<img src="assets/images/unit-testing.png" class="img-fluid" alt="">
</div>
</div>
</div>
</div>
<div id="marketing" class="tab-pane fade">
<div class="row align-items-center">
<div class="col-lg-6">
<div class="deneb_content_box">
<h2>Digital Marketing</h2>
<p>Etiam suscipit sed sem nec elementum. Interdum et malesuada fames ac ante ipsum primis in faucibus. Sed accumsan, urna vel finibus sollicitudin, urna sem fringilla nisi.</p>
<p>In vel ante tristique, blandit nisi in, feugiat nisl. Nunc sagittis pretium arcu, ac consectetur diam feugiat vitae. Pellentesque sit amet elit facilisis, sodales nisl non, luctus ex. Donec molestie consequat velit, id imperdiet arcu sollicitudin.</p>
<p>Praesent ac tempus ipsum, eget consequat ante. Sed consequat, elit euismod finibus faucibus.</p>
</div>
</div>
<div class="col-lg-6">
<div class="deneb_img_box">
<img src="assets/images/course_5.png" class="img-fluid" alt="">
</div>
</div>
</div>
</div>
<div id="analysis" class="tab-pane fade">
<div class="row align-items-center">
<div class="col-lg-6">
<div class="deneb_content_box">
<h2>Business Analysis</h2>
<p>Etiam suscipit sed sem nec elementum. Interdum et malesuada fames ac ante ipsum primis in faucibus. Sed accumsan, urna vel finibus sollicitudin, urna sem fringilla nisi.</p>
<p>In vel ante tristique, blandit nisi in, feugiat nisl. Nunc sagittis pretium arcu, ac consectetur diam feugiat vitae. Pellentesque sit amet elit facilisis, sodales nisl non, luctus ex. Donec molestie consequat velit, id imperdiet arcu sollicitudin.</p>
<p>Praesent ac tempus ipsum, eget consequat ante. Sed consequat, elit euismod finibus faucibus.</p>
</div>
</div>
<div class="col-lg-6">
<div class="deneb_img_box">
<img src="assets/images/service.jpg" class="img-fluid" alt="">
</div>
</div>
</div>
</div>
</div>
<!-- tab pane -->
</div>
</div>
</div>
</div>
</section>
<!-- End deneb_service section -->
<!-- Start Portfolio Area -->
<!-- <section class="portfolio_area section-margin portfolio-three pb-lg-5 pb-md-4 pb-4" id="portfolio">
<div class="container mb-5">
<div class="row">
<div class="col-lg-7 mx-auto mb-5">
<div class="text-center">
<h6>Portfolio</h6>
<h3 class="mt-3">Our Works</h3>
</div>
</div>
</div>
<div class="filters portfolio-filter">
<ul>
<li class="active" data-filter="*">all</li>
<li data-filter=".popular">popular</li>
<li data-filter=".latest"> latest</li>
<li data-filter=".following">following</li>
<li data-filter=".upcoming">upcoming</li>
</ul>
</div>
<div class="filters-content">
<div class="row portfolio-grid">
<div class="grid-sizer col-md-3 col-lg-3"></div>
<div class="col-lg-6 col-md-6 all following">
<div class="single_portfolio">
<img class="img-fluid w-100" src="assets/images/portfolio/p1.jpg" alt="">
<div class="overlay"></div>
<div class="short_info">
<h4><a href="portfolio-details.html">Lens Mockup Design</a></h4>
<p>Art, Illustration</p>
</div>
</div>
</div>
<div class="col-lg-6 col-md-6 all latest popular upcoming">
<div class="single_portfolio">
<img class="img-fluid w-100" src="assets/images/portfolio/p4.jpg" alt="">
<div class="overlay"></div>
<div class="short_info">
<h4><a href="portfolio-details.html">Lens Mockup Design</a></h4>
<p>Art, Illustration</p>
</div>
</div>
</div>
<div class="col-lg-3 col-md-6 all latest following">
<div class="single_portfolio">
<img class="img-fluid w-100" src="assets/images/portfolio/p2.jpg" alt="">
<div class="overlay"></div>
<div class="short_info">
<h4><a href="portfolio-details.html">Lens Mockup Design</a></h4>
<p>Art, Illustration</p>
</div>
</div>
</div>
<div class="col-lg-3 col-md-6 all latest upcoming">
<div class="single_portfolio">
<img class="img-fluid w-100" src="assets/images/portfolio/p3.jpg" alt="">
<div class="overlay"></div>
<div class="short_info">
<h4><a href="portfolio-details.html">Lens Mockup Design</a></h4>
<p>Art, Illustration</p>
</div>
</div>
</div>
<div class="col-lg-6 col-md-6 all popular">
<div class="single_portfolio">
<img class="img-fluid w-100" src="assets/images/portfolio/p6.jpg" alt="">
<div class="overlay"></div>
<div class="short_info">
<h4><a href="portfolio-details.html">Lens Mockup Design</a></h4>
<p>Art, Illustration</p>
</div>
</div>
</div>
<div class="col-lg-6 col-md-6 all popular latest following">
<div class="single_portfolio">
<img class="img-fluid w-100" src="assets/images/portfolio/p5.jpg" alt="">
<div class="overlay"></div>
<div class="short_info">
<h4><a href="portfolio-details.html">Lens Mockup Design</a></h4>
<p>Art, Illustration</p>
</div>
</div>
</div>
</div>
</div>
</div>
</section> -->
<!-- End Portfolio Area -->
<!-- Start deneb_skill section -->
<section id="why-us" class="deneb_skill py-5">
<div class="container py-lg-5 py-md-4 py-sm-4 py-0">
<div class="row align-items-center">
<div class="col-lg-6 pr-lg-5">
<h6 class="mb-3">Why Us</h6>
<h3>Why Choose Us?</h3>
<p class="mt-3 mb-4">All our training courses are designed to be productive, industry-relevant and maximizes the learner's focused time during the sessions.</p>
<div class="skill_wrapper">
<!-- <div class="single_bar">
<div class="progress_title">
<h5><i class="fas fa-check"></i> Cost-effective</h5>
</div>
<div>
<div><p class="mt-3 mb-4">You will learn programming from actual Python Software Engineers with 10+ years of industry experience.</p></div>
</div>
</div> -->
<div class="single_bar">
<div class="progress_title">
<h5><i class="fas fa-check"></i> Productive Output</h5>
</div>
<div>
<div><p class="mt-3 mb-4">Learn "enough to be dangerous". Given the relatively short span of time you'll need to spend on each course, there's a productive output at the end.</p></div>
</div>
</div>
<div class="single_bar">
<div class="progress_title">
<h5><i class="fas fa-check"></i> Industry-Relevant Curriculum</h5>
</div>
<div>
<div><p class="mt-3 mb-4">You will learn programming from actual Python Software Engineers with 15 years of industry experience.</p></div>
</div>
</div>
<div class="single_bar">
<div class="progress_title">
<h5><i class="fas fa-check"></i> Expert Guidance</h5>
</div>
<div>
<div><p class="mt-3 mb-4">Have Python pros at your side. They'll help you navigate the complexities of software engineering, and ensure you always choose the right tool for the job.</p></div>
</div>
</div>
<div class="single_bar">
<div class="progress_title">
<h5><i class="fas fa-check"></i> Maximized Focused Time</h5>
</div>
<div>
<div><p class="mt-3 mb-4">Each session is designed as a focused time for you to learn and apply the topics. When you get stuck or have clarifying questions, there's someone who can guide you and answer your question rightaway.</p></div>
</div>
</div>
<div class="single_bar">
<div class="progress_title">
<h5><i class="fas fa-check"></i> Customizable Training Solutions</h5>
</div>
<div>
<div><p class="mt-3 mb-4">There is rarely a one size fits all solution for anything. We have the capability to tailor-fit training solutions as well as the delivery method according to your company's goals and needs.</p></div>
</div>
</div>
<!-- <div class="single_bar">
<div class="progress_title">
<h5><i class="fas fa-check"></i> Quantitative & Qualitative Metrics</h5>
</div>
<div>
<div><p class="mt-3 mb-4">Each session is designed as a focused time for you to learn and apply the topics. When you get stuck or have clarifying questions, there's someone who can guide you and answer your question rightaway.</p></div>
</div>
</div> -->
</div>
</div>
<div class="col-lg-6">
<img src="assets/images/why-choose-us.png" alt="build" class="img-fluid wow fadeInRight my-lg-0 my-md-0 my-sm-4 my-3">
</div>
</div>
<div id="values" class="row align-items-center mt-5 pt-lg-5 pt-md-5 pt-sm-5 pt-0">
<div class="col-lg-6">
<img src="assets/images/our-values.png" alt="code" class="img-fluid wow fadeInLeft my-lg-0 my-md-0 my-sm-4 my-3">
</div>
<div class="col-lg-6 pl-lg-4">
<h6 class="mb-3">Values</h6>
<h3>Our Values</h3>
<p class="my-4">Our work is defined by our 3 pillars:</p>
<!-- <p class="mb-4">Nullam id dolor id nibh ultricies vehicula ut id elit. Donec sed odio dui. Nullam id dolor id nibh. Fusce dapibus, tellus ac cursus commodo.</p> -->
<ul>
<li><strong>Python and Open Source.</strong> We focus on Python and Open Source Technologies. Python is our programming language of choice for work and hobby projects because it's very powerful yet still simple, practical and fun to use. Open Source because the open source culture is more than just about reusing free code to get products to market faster. It is an ethos that values openness, collaboration, and excellence.</li>
<li><strong>Software Craftsmanship.</strong> We value and promote software craftsmanship.</li>
<li><strong>Engineering Culture.</strong> We believe that a healthy team culture is key to building a passionate and high-performing team.</li>
</ul>
</div>
</div>
</div>
</section>
<!-- Team Start -->
<section id="team" class="team-area pb-5">
<div class="container text-center pb-lg-5 pb-0">
<div class="row">
<div class="col-lg-12">
<h6>Team</h6>
<h3 class="mt-3 mb-5">Our Team</h3>
</div>
</div>
<div class="row align-items-center clients text-center">
<div class="col-lg-6 col-sm-6">
<div class="team px-4 py-5 my-2">
<img src="assets/images/matt.jpg" alt="team">
<h4 class="mt-3 mb-2">Matt Lebrun</h4>
<p>Co-founder and Principal Trainer</p>
<!-- <h5>10+ yrs experience in various industries, startups, and the academe.
</h5> -->
<ul class="social mt-3">
<li><a href="https://www.linkedin.com/in/cr8ivecodesmith"><i class="fab fa-linkedin"></i></a></li>
</ul>
</div>
</div>
<div class="col-lg-6 col-sm-6">
<div class="team px-4 py-5 my-2">
<img src="assets/images/micaela.jpg" alt="team">
<h4 class="mt-3 mb-2">Micaela Reyes</h4>
<p>Co-founder and Training Advisor</p>
<!-- <h5>10+ yrs experience in telco systems, large-scale web applications, and various startup SaaS platforms.
</h5> -->
<ul class="social mt-3">
<li><a href="https://www.linkedin.com/in/codemickeycode"><i class="fab fa-linkedin"></i></a></li>
</ul>
</div>
</div>
</div>
</div>
</section>
<!-- Team End -->
<!-- Testimonial Start -->
<section class="testimonial-three pb-lg-5">
<!-- <div class="container pb-lg-5 pb-0">
<div class="row">
<div class="col-lg-7 mx-auto text-center mb-5">
<h6>Testimonial</h6>
<h3 class="mt-3">What People Say</h3>
</div>
</div>
<div class="row">
<div class="col-md-12">
<div id="testimonial-slider" class="owl-carousel">
<div class="testimonial">
<div class="pic">
<img src="assets/images/t1.png">
</div>
<p class="description">
Lorem ipsum dolor sit amet, consectetur adipisicing elit. Architecto commodi dolorum earum fugiat, fugit hic id, ipsum laborum minus nostrum numquam perspiciatis saepe velit.
</p>
<div class="testimonial-profile">
<h3 class="title">williamson-</h3>
<span class="post">Web Developer</span>
</div>
</div>
<div class="testimonial">
<div class="pic">
<img src="assets/images/t2.png">
</div>
<p class="description">
Lorem ipsum dolor sit amet, consectetur adipisicing elit. Architecto commodi dolorum earum fugiat, fugit hic id, ipsum laborum minus nostrum numquam perspiciatis saepe velit.
</p>
<div class="testimonial-profile">
<h3 class="title">Kristina-</h3>
<span class="post">Web Designer</span>
</div>
</div>
<div class="testimonial">
<div class="pic">
<img src="assets/images/t3.png">
</div>
<p class="description">
Lorem ipsum dolor sit amet, consectetur adipisicing elit. Architecto commodi dolorum earum fugiat, fugit hic id, ipsum laborum minus nostrum numquam perspiciatis saepe velit.
</p>
<div class="testimonial-profile">
<h3 class="title">Steve Thomas-</h3>
<span class="post">Web Developer</span>
</div>
</div>
</div>
</div>
</div> -->
<div class="row">
<div class="col-lg-7 mx-auto text-center mb-5">
<h6>Clients and Partners</h6>
<h3 class="mt-3">Trusted by</h3>
</div>
</div>
<div class="row align-items-center clients text-center mt-4">
<div class="col-lg-3 client">
<img src="assets/images/ethos-bytes-logo-2.png" alt="client" class="wow fadeInLeft">
</div>
<div class="col-lg-3 client">
<img src="assets/images/apperph-logo.png" alt="client" class="wow fadeInLeft">
</div>
<div class="col-lg-3 client">
<img src="assets/images/smc-logo.png" alt="client" class="wow fadeInLeft">
</div>
<div class="col-lg-3 client">
<img src="assets/images/axa-logo.jpg" alt="client" class="wow fadeInLeft">
</div>
</div>
<div class="row align-items-center clients text-center mt-4">
<div class="col-lg-3 client">
<img src="assets/images/phoenix-one-logo.png" alt="client" class="wow fadeInLeft">
</div>
<div class="col-lg-3 client">
<img src="assets/images/lattice-semi-logo.png" alt="client" class="wow fadeInLeft">
</div>
<div class="col-lg-3 client">
<img src="assets/images/lendi-group-logo.png" alt="client" class="wow fadeInLeft">
</div>
</div>
</div>
</section>
<!-- Testimonial End -->
<!-- Start Blog Area -->
<!-- <section class="blog-area blog-three section-gap mt-lg-0 mt-md-5 mt-5">
<div class="container">
<div class="row">
<div class="col-lg-12">
<div class="text-center">
<h6>Blog</h6>
<h3 class="mt-3 mb-lg-5 mb-md-4 mb-sm-4 mb-4">Our blog</h3>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-4 col-md-6">
<div class="single-blog">
<div class="thumb">
<img class="img-fluid" src="assets/images/b1.jpg" alt="">
</div>
<div class="short_details">
<div class="meta-top d-flex">
<a href="#"><i class="far fa-user"></i> Admin post</a>
<a href="#"><i class="far fa-calendar"></i> Sep 20, 2020</a>
</div>
<a class="d-block" href="blog-details.html">
<h4>Shall every fourth lesser have...</h4>
</a>
<div class="text-wrap">
<p>
Have whose a two night earth she set you creeping replenish place whales move Forth first him seed green.
</p>
</div>
<a href="#" class="link_btn">Read More</a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6">
<div class="single-blog">
<div class="thumb">
<img class="img-fluid" src="assets/images/b2.jpg" alt="">
</div>
<div class="short_details">
<div class="meta-top d-flex">
<a href="#"><i class="far fa-user"></i> Admin post</a>
<a href="#"><i class="far fa-calendar"></i> Aug 29, 2020</a>
</div>
<a class="d-block" href="blog-details.html">
<h4>Horse play gorless knees up...</h4>
</a>
<div class="text-wrap">
<p>
Have whose a two night earth she set you creeping replenish place whales move Forth first him seed green.
</p>
</div>
<a href="#" class="link_btn">Read More</a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6">
<div class="single-blog">
<div class="thumb">
<img class="img-fluid" src="assets/images/b3.jpg" alt="">
</div>
<div class="short_details">
<div class="meta-top d-flex">
<a href="#"><i class="far fa-user"></i> Admin post</a>
<a href="#"><i class="far fa-calendar"></i> Jul 14, 2020</a>
</div>
<a class="d-block" href="blog-details.html">
<h4>Quisque felis ligula semper...</h4>
</a>
<div class="text-wrap">
<p>
Have whose a two night earth she set you creeping replenish place whales move Forth first him seed green.
</p>
</div>
<a href="#" class="link_btn">Read More</a>
</div>
</div>
</div>
</div>
</div>
</section> -->
<!-- End Blog Area -->
<!--Remaining section-->
<!-- Start footer -->
<footer class="footer">
<section class="footer-top py-5">
<div class="container py-lg-5 py-0">
<div class="row widget_wrapper">
<div class="col-lg-4">
<div class="widget widegt_about">
<div class="widget_title">
<img src="assets/images/codehappy-logo-small2.png" class="img-fluid" alt="">
</div>
<p>Python + Open Source + Software Craftsmanship + Engineering Culture
</p>
<p>Hone your craft. Love what you do.</p>
<ul class="social">
<li><a href="https://www.linkedin.com/company/codehappyph"><i class="fab fa-linkedin-f"></i></a></li>
<li><a href="https://www.facebook.com/codehappyph"><i class="fab fa-facebook-f"></i></a></li>
<li><a href="https://twitter.com/codehappyph"><i class="fab fa-twitter"></i></a></li>
<li><a href="https://www.instagram.com/codehappyph"><i class="fab fa-instagram"></i></a></li>
</ul>
</div>
</div>
<!-- <div class="col-lg-2">
<div class="widget widget_link">
<div class="widget_title">
<h4>Links</h4>
</div>
<ul>
<li><i class="far fa-clone"></i><a href="#">About Us</a></li>
<li><i class="far fa-clone"></i><a href="#">Services</a></li>
<li><i class="far fa-clone"></i><a href="#">Portfolio</a></li>
<li><i class="far fa-clone"></i><a href="#">Blog</a></li>
<li><i class="far fa-clone"></i><a href="#">Contact</a></li>
<li><i class="far fa-clone"></i><a href="#">Tears</a></li>
</ul>
</div>
</div> -->
<div class="col-lg-4">
<div class="widget widget_contact">
<div class="widget_title">
<h4>Contact Us</h4>
</div>
<div class="contact_info">
<!-- <div class="single_info">
<div class="icon">
<i class="fas fa-phone-alt"></i>
</div>
<div class="info">
<p><a href="tel:+919246147999">1800-121-3637</a></p>
<p><a href="tel:+919246147999">+91 924-614-7999</a></p>
</div>
</div> -->
<div class="single_info">
<div class="icon">
<i class="fas fa-envelope"></i>
</div>
<div class="info">
<p><a href="mailto:hello@codehappy.ph">hello@codehappy.ph</a></p>
</div>
</div>
<div class="single_info">
<div class="icon">
<i class="fas fa-map-marker-alt"></i>
</div>
<div class="info">
<p>Makati City, Metro Manila,<span>Philippines.</span></p>
</div>
</div>
</div>
</div>
</div>
<div class="col-lg-4">
<div class="widget">
<div class="widget_title">
<h4>Subscribe</h4>