-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLearnProgramming copy.html
875 lines (827 loc) · 68.4 KB
/
LearnProgramming copy.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
<!doctype html>
<html lang="en">
<head>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-EH5ND7EZEG"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-EH5ND7EZEG');
</script>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-R9B1HJ5VPX"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-R9B1HJ5VPX');
</script>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Bootstrap CSS -->
<link href="assets/css/bootstrap.min.css" rel="stylesheet">
<!-- Bootstrap Icon CSS -->
<link href="assets/css/bootstrap-icons.css" rel="stylesheet">
<!-- Fontawesome all CSS -->
<link href="assets/css/all.min.css" rel="stylesheet">
<!-- Fontawesome CSS -->
<link href="assets/css/fontawesome.min.css" rel="stylesheet">
<!-- Swiper slider CSS -->
<link rel="stylesheet" href="assets/css/swiper-bundle.min.css">
<!-- Animate CSS -->
<link rel="stylesheet" href="assets/css/animate.min.css">
<link rel="stylesheet" href="assets/css/jquery.fancybox.min.css">
<!-- BoxIcon CSS -->
<link href="assets/css/boxicons.min.css" rel="stylesheet">
<!-- Style CSS -->
<link rel="stylesheet" href="assets/css/preloader.css">
<link rel="stylesheet" href="assets/css/style2.css">
<link rel="icon" href="assets/img/sm-logo.svg" type="image/gif" sizes="20x20">
<!--Trust Pilot Review -->
<script>
(function(w,d,s,r,n){w.TrustpilotObject=n;w[n]=w[n]||function(){(w[n].q=w[n].q||[]).push(arguments)};
a=d.createElement(s);a.async=1;a.src=r;a.type='text/java'+s;f=d.getElementsByTagName(s)[0];
f.parentNode.insertBefore(a,f)})(window,document,'script', 'https://invitejs.trustpilot.com/tp.min.js', 'tp');
tp('register', 'x73KWStcI958P9MT');
</script>
<meta name="author" content="Jhon Arzu-Gil">
<meta name="copyright" content="Jhon Arzu-Gil" />
<meta name="description" content="Cloud Technology Computing: Expert in software development, cloud computing (IBM, Google, Azure), and mobile app innovation. Elevate your tech journey." />
<meta name=”robots” content=”index, follow”>
<!-- Open Graph / Facebook -->
<meta property="og:title" content="Cloud Technology Computing: Computer Software Development" />
<meta property="og:description" content="Cloud Technology Computing: Expert in software development, cloud computing (IBM, Google, Azure), and mobile app innovation. Elevate your tech journey.">
<meta property="og:url" content="https://cloudtechnologycomputing.com">
<meta property="og:image" content="https://cloudtechnologycomputing.com/assets/img/home-6/computer clouds.png">
<meta property="og:site_name" content="Cloud Technology Computing" />
<meta property="og:locale" content="en_US" />
<meta property="og:type" content="website">
<!-- Twitter -->
<meta name="twitter:card" content="summary_large_image"/>
<meta name="twitter:title" content="Cloud Technology Computing: Computer Software Development"/>
<meta property="twitter:description" content="Cloud Technology Computing: Expert in software development, cloud computing (IBM, Google, Azure), and mobile app innovation. Elevate your tech journey.">
<meta property="twitter:site" content="@JhonArzuGil">
<meta property="twitter:image" content="https://cloudtechnologycomputing.com/assets/img/home-6/computer clouds.png">
<meta name="twitter:creator" content="@JhonArzuGil"/>
<meta property="twitter:url" content="https://cloudtechnologycomputing.com/">
<meta name="twitter:image:alt" content="Cloud Technology Computing: Expert in software development, cloud computing (IBM, Google, Azure), and mobile app innovation. Elevate your tech journey.">
<!-- Favicon -->
<link href="assets/img/computer clouds.png" type="image/x-icon" rel="icon">
<!-- Title -->
<title>"Cloud Technology Computing: Computer Software Development</title>
</head>
<body class="home-dark2 tt-magic-cursor">
<!-- Preloader Start -->
<div class="preloader">
<div id="particles-background" class="vertical-centered-box"></div>
<div id="particles-foreground" class="vertical-centered-box"></div>
<div class="vertical-centered-box">
<div class="content">
<div class="loader-circle"></div>
<div class="loader-line-mask">
<div class="loader-line"></div>
</div>
<svg width="50" height="50" viewBox="0 0 40 38" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd"
d="M31.5875 7.80132C26.1756 2.71548 18.9772 3.33531 13.0177 7.36702C12.9433 7.45181 12.4808 7.69025 12.9963 6.94836C24.4371 -5.54919 45.4795 11.5151 33.7252 25.7347C36.3568 20.0872 37.0161 12.9032 31.5879 7.80144L31.5875 7.80132Z"
fill="#06D889" />
<path fill-rule="evenodd" clip-rule="evenodd"
d="M26.7504 1.91075C8.15888 -3.63601 -7.81139 25.1051 12.8958 38C-10.3418 27.992 1.07241 -2.40195 21.5296 0.151704C23.1991 0.358215 25.7562 1.14769 26.7503 1.91051L26.7504 1.91075Z"
fill="#06D889" />
<path fill-rule="evenodd" clip-rule="evenodd"
d="M31.656 20.3691C31.656 26.5676 26.6425 31.6058 20.4701 31.6058C14.2923 31.6058 9.2793 26.5675 9.2793 20.3691C9.2793 14.1705 14.2928 9.13232 20.4701 9.13232C26.6425 9.13232 31.656 14.1706 31.656 20.3691ZM12.2671 21.8578C11.4325 23.1348 12.4106 26.377 15.3081 28.2948C18.1789 30.2125 21.8579 30.0695 22.7139 28.7876C23.5485 27.5373 21.7676 28.3426 18.514 27.1345C13.1444 25.1426 13.0966 20.5759 12.2671 21.8578Z"
fill="#06D889" />
<path fill-rule="evenodd" clip-rule="evenodd"
d="M38.395 13.1796C46.0027 27.7854 24.886 46.5405 10.1649 33.2636C8.28281 31.579 7.45359 29.9525 6.08203 27.8385C17.5284 43.6315 42.7177 31.1549 38.1986 13.4121C38.0338 12.7603 38.1402 12.7021 38.3952 13.179L38.395 13.1796Z"
fill="#06D889" />
</svg>
</div>
</div>
</div>
<!-- Preloader End -->
<div class="header-sidebar">
<div class="siderbar-top">
<div class="sidebar-log">
<a href="../index.html">Cloud Technology Computing</a>
</div>
<div class="close-btn">
<i class="bi bi-x-lg"></i>
</div>
</div>
<div class="sidebar-content">
<p>"🌐 Cloud Tech Co. | Est. Oct 6, 2023 | Texas-Based | Cloud Computing & Web Development Wizards 🚀 #TechInnovators"</p>
</div>
<div class="address-card">
<div class="content">
<div class="informations">
<div class="single-info">
<div class="icon">
<i class="fas fa-map-marker-alt"></i>
</div>
<div class="info">
<p>4409 Caplin St, Houston,Texas, 77026, United States</p>
</div>
</div>
<div class="single-info">
<div class="icon">
<i class="fas fa-phone-alt"></i>
</div>
<div class="info">
<a href="tel:2489385567">+1 248 938 5567</a>
<a href="tel:2489385567">+1 248 938 5567</a>
</div>
</div>
<div class="single-info">
<div class="icon">
<i class="far fa-envelope"></i>
</div>
<div class="info">
<a href="mailto: Jgil20@me.com">Jgil20@me.com</a>
<a href="mailto: Jgil20@me.com">Jgil20@me.com</a>
</div>
</div>
</div>
</div>
<!-- <img src="assets/images/bg/office1.png" alt="image"> -->
</div>
<div class="follow-area">
<h5 class="blog-widget-title">Follow Us</h5>
<p class="para">Follow us on Social Network</p>
<div class="blog-widget-body">
<ul class="follow-list d-flex flex-row align-items-start gap-4">
<li><a href="https://www.facebook.com/CloudTechnologyComputingCorporation"><i class="bx bxl-facebook" target="_blank"></i></a></li>
<li><a href="https://twitter.com/CTCCorporation"><i class="bx bxl-twitter" target="_blank"></i></a></li>
<li><a href="https://www.instagram.com/cloudtechnologycomputing" target="_blank"><i class="bx bxl-instagram"></i></a></li>
<li><a href="https://www.pinterest.com/CloudTechnologyComputing" target="_blank" ><i class="bx bxl-pinterest"></i></a></li>
</ul>
</div>
</div>
</div>
<header class="header-area2 style-2 two">
<div class="header-logo">
<a href="../index.html"><!--<img alt="image" class="img-fluid" src="assets/img/logo.svg"></a>--><p style="color : white">Cloud Technology Computing</p></a>
</div>
<div class="main-menu">
<div class="mobile-logo-area d-lg-none d-flex justify-content-between align-items-center">
<div class="mobile-logo-wrap">
<a href="../index.html"><!--<img alt="image" src="assets/img/logo.svg"> --> <p style="color : white"> Cloud Technology Computing</p></a>
</div>
</div>
<ul class="menu-list">
<li class="menu-item">
<a href="../index.php" class="drop-down">Home</a><i class="bi bi-plus dropdown-icon"></i>
</li>
<li><a href="https://www.arzugil.com">C.E.O</a></li>
<li class="menu-item-has-children">
<a href="../services.php" class="drop-down">Services</a><i class="bi bi-plus dropdown-icon"></i>
<ul class="sub-menu">
<li> <a href="../I.T%20Services%20/Web%20Development%20service-details.php" class="dropdown-item">Web Development Services</a></li>
<li><a href="../I.T%20Services%20/Software%20Development%20service-details.php" class="nav-item nav-link">Software Development Services</a></li>
<li> <a href="../I.T%20Services%20/Cloud%20Solutions%20service-details.php" class="dropdown-item">Cloud Solutions Services</a></li>
<li> <a href="../I.T%20Services%20/S.E.O%20service-details.php" class="dropdown-item">S.E.O Services</a></li>
<li> <a href="../I.T%20Services%20/Data%20Analytics%20service-details.php" class="dropdown-item">Data Analytics Services</a></li>
<li> <a href="../I.T%20Services%20/Digital%20Marketing%20service-details.php" class="dropdown-item">Digital Marketing Services</a></li>
<li> <a href="../I.T%20Services%20/Website%20Optimization%20service-details.php" class="dropdown-item">Website Optimization Services</a></li>
<li><a href="../I.T%20Services%20/Mobile%20Development%20service-details.php" class="nav-item nav-link active">Mobile Development Services</a></li>
<li> <a href="../I.T%20Services%20/Wordpress%20Development%20service-details.php" class="dropdown-item">Wordpress Development Services</a></li>
<li> <a href="../I.T%20Services%20/SAP%20Consulting%20service-details.php" class="dropdown-item">SAP Consulting Services</a></li>
<li> <a href="../I.T%20Services%20/IT%20Consulting%20service-details.php" class="dropdown-item">IT Consulting Services</a></li>
<li> <a href="../I.T%20Services%20/Artificial%20Intelligence%20service-details.php" class="dropdown-item">Artificial Intelligence Services</a></li>
</ul>
<li class="menu-item-has-children">
<a href="project.php" class="drop-down">Projects</a><i class="bi bi-plus dropdown-icon"></i>
<ul class="sub-menu">
<li> <a href="https://iownya.com" class="dropdown-item">Shop Online</a></li>
<li><a href="https://play.google.com/store/search?q=Jhon%20Arzu&c=apps&hl=en_US&gl=US" target="_blank" class="nav-item nav-link">App's</a></li>
<li> <a href="https://www.credly.com/users/jhon-arzu-gil.8cf7cffc" target="_blank" class="dropdown-item">Certifications</a></li>
<li><a href="https://profile.indeed.com/p/jhona-ycwvn06" target="_blank" class="dropdown-item">Indeed Resume</a></li>
</ul>
<li><a href="../case-study-standard.php">Case Studies</a></li>
<li><a href="../blog.php">Blog</a></li>
<li class="menu-item-has-children">
<a href="../about.html" class="drop-down">About Us</a><i class="bi bi-plus dropdown-icon"></i>
<ul class="sub-menu">
<li> <a href="../team.php" class="dropdown-item">Our Team</a></li>
<li> <a href="../pricing.php" class="dropdown-item">Pricing</a></li>
<li> <a href="../faq.php" class="dropdown-item">FAQ's</a></li><li>
<li> <a href="../contact.php" class="dropdown-item">Contact Us!</a></li>
</ul>
</ul>
<div class="d-lg-none d-block">
<form class="mobile-menu-form">
<div class="hotline pt-30">
<div class="hotline-icon">
<svg width="26" height="26" viewBox="0 0 26 26" xmlns="http://www.w3.org/2000/svg">
<path
d="M20.5488 16.106C20.0165 15.5518 19.3745 15.2554 18.694 15.2554C18.0191 15.2554 17.3716 15.5463 16.8173 16.1005L15.0833 17.8291C14.9406 17.7522 14.7979 17.6809 14.6608 17.6096C14.4632 17.5108 14.2766 17.4175 14.1175 17.3187C12.4932 16.2871 11.0171 14.9426 9.6013 13.2031C8.91536 12.3361 8.45441 11.6063 8.11968 10.8655C8.56965 10.4539 8.9867 10.0259 9.39277 9.61431C9.54642 9.46066 9.70007 9.30152 9.85372 9.14787C11.0061 7.9955 11.0061 6.50291 9.85372 5.35054L8.35564 3.85246C8.18553 3.68234 8.00993 3.50674 7.8453 3.33115C7.51606 2.99092 7.17034 2.63972 6.81366 2.31047C6.28137 1.78368 5.64483 1.50381 4.97535 1.50381C4.30588 1.50381 3.65836 1.78368 3.10961 2.31047C3.10412 2.31596 3.10412 2.31596 3.09864 2.32145L1.23289 4.20365C0.530497 4.90605 0.129911 5.7621 0.0421114 6.75533C-0.089588 8.35768 0.382335 9.85027 0.744508 10.827C1.63348 13.2251 2.96145 15.4475 4.94243 17.8291C7.34594 20.699 10.2378 22.9653 13.5413 24.5622C14.8034 25.1603 16.4881 25.8682 18.3703 25.9889C18.4855 25.9944 18.6062 25.9999 18.716 25.9999C19.9836 25.9999 21.0482 25.5445 21.8823 24.639C21.8878 24.628 21.8987 24.6226 21.9042 24.6116C22.1896 24.2659 22.5188 23.9531 22.8645 23.6184C23.1005 23.3934 23.3419 23.1574 23.5779 22.9105C24.1212 22.3453 24.4065 21.6868 24.4065 21.0118C24.4065 20.3314 24.1157 19.6783 23.5614 19.1296L20.5488 16.106ZM22.5133 21.8843C22.5078 21.8843 22.5078 21.8898 22.5133 21.8843C22.2993 22.1148 22.0798 22.3233 21.8439 22.5538C21.4872 22.894 21.125 23.2507 20.7848 23.6513C20.2305 24.2439 19.5775 24.5238 18.7215 24.5238C18.6392 24.5238 18.5514 24.5238 18.4691 24.5183C16.8393 24.414 15.3247 23.7775 14.1888 23.2342C11.0829 21.7307 8.35564 19.596 6.08931 16.8907C4.21808 14.6354 2.96694 12.5501 2.13833 10.3112C1.62799 8.94484 1.44142 7.88026 1.52373 6.87606C1.57861 6.23402 1.82554 5.70174 2.281 5.24628L4.15223 3.37504C4.42112 3.12262 4.70647 2.98543 4.98633 2.98543C5.33204 2.98543 5.6119 3.19396 5.7875 3.36956C5.79299 3.37504 5.79847 3.38053 5.80396 3.38602C6.1387 3.69881 6.45697 4.02257 6.79171 4.36828C6.96182 4.54388 7.13742 4.71948 7.31302 4.90056L8.8111 6.39865C9.39277 6.98032 9.39277 7.51809 8.8111 8.09976C8.65196 8.2589 8.49831 8.41804 8.33918 8.57169C7.87823 9.04361 7.43923 9.48261 6.96182 9.91063C6.95085 9.92161 6.93987 9.92709 6.93438 9.93807C6.46246 10.41 6.55026 10.8709 6.64903 11.1837C6.65452 11.2002 6.66001 11.2167 6.6655 11.2331C7.05511 12.177 7.60385 13.0659 8.43795 14.125L8.44344 14.1305C9.95798 15.9962 11.5548 17.4504 13.3163 18.5644C13.5413 18.7071 13.7718 18.8223 13.9913 18.932C14.1888 19.0308 14.3754 19.1241 14.5345 19.2229C14.5565 19.2339 14.5784 19.2503 14.6004 19.2613C14.787 19.3546 14.9626 19.3985 15.1436 19.3985C15.5991 19.3985 15.8845 19.1131 15.9777 19.0198L17.8545 17.1431C18.041 16.9566 18.3374 16.7316 18.6831 16.7316C19.0233 16.7316 19.3032 16.9456 19.4733 17.1322C19.4788 17.1376 19.4788 17.1376 19.4842 17.1431L22.5078 20.1667C23.0731 20.7265 23.0731 21.3026 22.5133 21.8843Z">
</path>
<path
d="M14.0512 6.18495C15.4889 6.4264 16.7949 7.10685 17.8375 8.14947C18.8802 9.19209 19.5551 10.4981 19.8021 11.9358C19.8624 12.298 20.1752 12.5504 20.5319 12.5504C20.5758 12.5504 20.6142 12.5449 20.6581 12.5395C21.0642 12.4736 21.3331 12.0895 21.2672 11.6834C20.9709 9.94387 20.1478 8.35799 18.8911 7.10136C17.6345 5.84473 16.0486 5.0216 14.3091 4.72528C13.903 4.65943 13.5244 4.92832 13.4531 5.3289C13.3817 5.72949 13.6451 6.1191 14.0512 6.18495Z">
</path>
<path
d="M25.9707 11.4691C25.4823 8.60468 24.1324 5.99813 22.0581 3.92387C19.9838 1.8496 17.3773 0.49968 14.5128 0.011294C14.1122 -0.0600432 13.7336 0.214331 13.6623 0.614917C13.5964 1.02099 13.8653 1.39963 14.2714 1.47096C16.8285 1.90447 19.1607 3.11721 21.0155 4.96649C22.8702 6.82125 24.0775 9.15343 24.511 11.7106C24.5714 12.0728 24.8841 12.3252 25.2408 12.3252C25.2847 12.3252 25.3231 12.3197 25.367 12.3142C25.7676 12.2539 26.042 11.8697 25.9707 11.4691Z">
</path>
</svg>
</div>
<div class="hotline-info">
<span>Call Us Now</span>
<h1><a href="tel:12489385567">1-248-938-5567</a></h1>
</div>
</div>
<div class="email pt-20 d-flex align-items-center">
<div class="email-icon">
<svg width="26" height="26" viewBox="0 0 26 26" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_461_205)">
<path
d="M23.5117 3.30075H2.38674C1.04261 3.30075 -0.0507812 4.39414 -0.0507812 5.73827V20.3633C-0.0507812 21.7074 1.04261 22.8008 2.38674 22.8008H23.5117C24.8558 22.8008 25.9492 21.7074 25.9492 20.3633V5.73827C25.9492 4.39414 24.8558 3.30075 23.5117 3.30075ZM23.5117 4.92574C23.6221 4.92574 23.7271 4.94865 23.8231 4.98865L12.9492 14.4131L2.07526 4.98865C2.17127 4.9487 2.27629 4.92574 2.38668 4.92574H23.5117ZM23.5117 21.1757H2.38674C1.93844 21.1757 1.57421 20.8116 1.57421 20.3632V6.70547L12.4168 16.1024C12.57 16.2349 12.7596 16.3008 12.9492 16.3008C13.1388 16.3008 13.3285 16.2349 13.4816 16.1024L24.3242 6.70547V20.3633C24.3242 20.8116 23.96 21.1757 23.5117 21.1757Z">
</path>
</g>
</svg>
</div>
<div class="email-info">
<span>Email Now</span>
<h6><a href="mailto:Jgil20@me.com">Jgil20@me.com</a></h6>
</div>
</div>
</form>
<div class="header-btn5">
<a class="primary-btn3" href="../contact.html">Get A Quote</a>
</div>
</div>
</div>
<div class="nav-right d-flex jsutify-content-end align-items-center">
<div class="header-contact d-xl-block d-none">
<span><img src="assets/img/home-6/phone.svg" alt="Cloud Technology Computing: Superior client support in computer clouds for enhanced reliability and innovative technical solutions">For Client Support:</span>
<h6><a href="Tel:12489385567">1-248-938-5567</a></h6>
</div>
<div class="header-btn d-sm-flex d-none">
<a href="JhonArzuGilResume2024Three.pdf" target="_blank">View Resume</a>
</div>
<div class="sidebar-button mobile-menu-btn ">
<span></span>
</div>
</div>
</header>
<!-- Start breadcrumbs section -->
<section class="breadcrumbs">
<div class="breadcrumb-sm-images">
<div class="inner-banner-1 magnetic-item">
<img src="../assets/img/inner-pages/OnlineAdvertisingCloudTechnologyComputing.avif" alt="computer clouds">
</div>
<div class="inner-banner-2 magnetic-item">
<img src="../assets/img/inner-pages/ibm cloud provider.avif" alt="cloud what">
</div>
</div>
<div class="container">
<div class="row">
<div class="col-12">
<div class="breadcrumb-wrapper">
<div class="breadcrumb-cnt">
<span>Blog Details</span>
<h1>"Learn Programming"</h1>
<div class="breadcrumb-list">
<a href="../index.html">Home</a><img src="assets/img/inner-pages/breadcrumb-arrow.svg" alt=""> Blog Details
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- End breadcrumbs section -->
<div class="bolog-details-area sec-mar">
<div class="container">
<div class="row">
<div class="col-lg-12">
<div class="post-thumb magnetic-item">
<img class="img-fluid" src="assets/img/home-6/profileLinkedIn%20copy.jpeg" alt="">
</div>
</div>
</div>
<div class="row g-lg-4 gy-5">
<div class="col-lg-8">
<div class="blog-details-content">
<span>Software</span>
<h2>Learn Programming</h2>
<div class="author-and-meta">
<div class="author-area">
<div class="author-img">
<img src="assets/img/home-6/profileLinkedIn%20copy.jpeg" alt="">
</div>
<div class="author-content">
<h6>By, <span>Arzu-Gil Jhon</span></h6>
</div>
</div>
<ul class="blog-meta">
<li>
<svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg">
<path d="M8 0C3.60594 0 0 3.60594 0 8C0 12.3941 3.60594 16 8 16C12.3941 16 16 12.3941 16 8C16 3.60594 12.3941 0 8 0ZM11.646 3.69106C11.8291 3.508 12.1259 3.508 12.3089 3.69106C12.492 3.87413 12.492 4.17091 12.3089 4.35397C12.1259 4.53703 11.8291 4.53703 11.646 4.35397C11.463 4.17091 11.463 3.87413 11.646 3.69106ZM7.53125 2.375C7.53125 2.11591 7.74091 1.90625 8 1.90625C8.25909 1.90625 8.46875 2.11591 8.46875 2.375V3.3125C8.46875 3.57159 8.25909 3.78125 8 3.78125C7.74091 3.78125 7.53125 3.57159 7.53125 3.3125V2.375ZM2.375 8.46875C2.11591 8.46875 1.90625 8.25909 1.90625 8C1.90625 7.74091 2.11591 7.53125 2.375 7.53125H3.3125C3.57159 7.53125 3.78125 7.74091 3.78125 8C3.78125 8.25909 3.57159 8.46875 3.3125 8.46875H2.375ZM4.35397 12.3089C4.17091 12.492 3.87413 12.492 3.69106 12.3089C3.508 12.1259 3.508 11.8291 3.69106 11.646C3.87413 11.4629 4.17091 11.4629 4.35397 11.646C4.53703 11.8291 4.53703 12.1259 4.35397 12.3089ZM4.35397 4.35397C4.17091 4.53703 3.87413 4.53703 3.69106 4.35397C3.508 4.17091 3.508 3.87413 3.69106 3.69106C3.87413 3.508 4.17091 3.508 4.35397 3.69106C4.53703 3.87413 4.53703 4.17091 4.35397 4.35397ZM8.46875 13.625C8.46875 13.8841 8.25909 14.0938 8 14.0938C7.74091 14.0938 7.53125 13.8841 7.53125 13.625V12.6875C7.53125 12.4284 7.74091 12.2188 8 12.2188C8.25909 12.2188 8.46875 12.4284 8.46875 12.6875V13.625ZM11.1439 11.1439C10.9608 11.327 10.6642 11.327 10.4811 11.1439L7.66856 8.33141C7.58069 8.24353 7.53125 8.1245 7.53125 8V5.1875C7.53125 4.92841 7.74091 4.71875 8 4.71875C8.25909 4.71875 8.46875 4.92841 8.46875 5.1875V7.80591L11.1439 10.4811C11.327 10.6642 11.327 10.9608 11.1439 11.1439ZM12.3089 12.3089C12.1259 12.492 11.8291 12.492 11.646 12.3089C11.463 12.1259 11.463 11.8291 11.646 11.646C11.8291 11.4629 12.1259 11.4629 12.3089 11.646C12.492 11.8291 12.492 12.1259 12.3089 12.3089ZM14.0938 8C14.0938 8.25909 13.8841 8.46875 13.625 8.46875H12.6875C12.4284 8.46875 12.2188 8.25909 12.2188 8C12.2188 7.74091 12.4284 7.53125 12.6875 7.53125H13.625C13.8841 7.53125 14.0938 7.74091 14.0938 8Z">
</path>
</svg>4 May, 2024
</li>
<li>
<svg viewBox="0 0 11 14" xmlns="http://www.w3.org/2000/svg">
<path d="M7.15888 13.1844C8.73336 10.6029 8.07416 7.35423 5.59136 5.46029C5.58991 5.45922 5.58846 5.45788 5.5873 5.45708L5.59803 5.48172L5.59629 5.5002C6.08003 6.68033 6.01217 7.97589 5.41793 9.08745L4.99915 9.87117L4.87068 9.00522C4.78338 8.41784 4.54354 7.85751 4.17407 7.3778H4.11578L4.08503 7.29744C4.08938 8.19499 3.88464 9.07915 3.48297 9.91322C2.95602 11.0047 3.03345 12.2633 3.69033 13.2806L4.14362 13.9829L3.3281 13.6647C1.98331 13.1399 0.908237 12.1291 0.378384 10.8914C-0.215271 9.50931 -0.105357 7.90679 0.672747 6.6056C1.07847 5.92875 1.36269 5.21012 1.51784 4.46926L1.66952 3.74314L2.0564 4.39079C2.24113 4.69961 2.37715 5.03388 2.46154 5.38503L2.47024 5.39333L2.47923 5.44958L2.48765 5.44717C3.64654 4.02518 4.34083 2.25579 4.44204 0.464176L4.46814 0L4.88982 0.253917C6.61075 1.28967 7.80589 2.95139 8.17508 4.81853L8.18349 4.85684L8.18784 4.86273L8.20669 4.83809C8.54398 4.42668 8.72204 3.93732 8.72204 3.42226V2.62461L9.2432 3.26048C10.4549 4.73845 11.0761 6.57185 10.9926 8.42319C10.8899 10.6024 9.6031 12.5151 7.5501 13.5514L6.66121 14L7.15888 13.1844Z">
</path>
</svg>1 View
</li>
<li>
<svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg">
<path d="M14.5662 14.9619C14.5908 15.0728 14.5903 15.1878 14.5648 15.2986C14.5393 15.4093 14.4895 15.513 14.419 15.6021C14.3484 15.6912 14.2589 15.7635 14.157 15.8136C14.055 15.8638 13.9432 15.8906 13.8295 15.8922C13.7123 15.8916 13.5967 15.8643 13.4916 15.8124L12.1473 15.1555C10.8911 15.6143 9.51546 15.6277 8.25052 15.1936C6.98557 14.7595 5.90806 13.9042 5.19824 12.7708C6.14928 12.8941 7.11563 12.8159 8.03447 12.5413C8.95331 12.2667 9.80408 11.8018 10.5315 11.1768C11.2589 10.5518 11.8466 9.78079 12.2565 8.91379C12.6664 8.0468 12.8892 7.10326 12.9106 6.14449C12.911 5.70944 12.8664 5.27551 12.7777 4.84961C13.6869 5.29062 14.4601 5.96909 15.0156 6.81329C15.571 7.65749 15.8881 8.63608 15.9332 9.64561C15.9633 10.4111 15.8336 11.1744 15.5525 11.887C15.2714 12.5996 14.845 13.2459 14.3004 13.7847L14.5662 14.9619Z">
</path>
<path d="M6.0757 0.216195C4.48484 0.198449 2.95187 0.812289 1.81293 1.92312C0.673981 3.03395 0.0220199 4.5511 1.29169e-06 6.1419C-0.000538167 6.94954 0.167902 7.74837 0.494497 8.48703C0.821091 9.22569 1.29861 9.88786 1.89638 10.431L1.65183 11.7365C1.63148 11.8461 1.63545 11.9588 1.66346 12.0668C1.69147 12.1747 1.74285 12.2751 1.81395 12.361C1.88505 12.4469 1.97414 12.5161 2.07493 12.5638C2.17572 12.6114 2.28575 12.6364 2.39724 12.6368C2.52333 12.6366 2.64739 12.6052 2.75837 12.5453L4.19679 11.7726C4.8041 11.9674 5.43791 12.067 6.0757 12.068C7.66662 12.0857 9.19965 11.4718 10.3386 10.3609C11.4776 9.25002 12.1295 7.73277 12.1514 6.1419C12.1294 4.5511 11.4774 3.03395 10.3385 1.92312C9.19953 0.812289 7.66656 0.198449 6.0757 0.216195ZM3.79731 7.05136C3.64711 7.05136 3.50027 7.00681 3.37538 6.92336C3.25049 6.83991 3.15314 6.7213 3.09566 6.58253C3.03818 6.44375 3.02314 6.29105 3.05244 6.14373C3.08175 5.99641 3.15408 5.86109 3.26029 5.75487C3.36651 5.64866 3.50183 5.57633 3.64915 5.54702C3.79647 5.51772 3.94917 5.53276 4.08795 5.59024C4.22672 5.64772 4.34533 5.74507 4.42878 5.86996C4.51223 5.99485 4.55678 6.14169 4.55678 6.29189C4.55678 6.49332 4.47676 6.68649 4.33433 6.82891C4.19191 6.97134 3.99874 7.05136 3.79731 7.05136ZM6.0757 7.05136C5.92549 7.05136 5.77866 7.00681 5.65377 6.92336C5.52887 6.83991 5.43153 6.7213 5.37405 6.58253C5.31657 6.44375 5.30153 6.29105 5.33083 6.14373C5.36013 5.99641 5.43247 5.86109 5.53868 5.75487C5.64489 5.64866 5.78022 5.57633 5.92754 5.54702C6.07486 5.51772 6.22756 5.53276 6.36633 5.59024C6.50511 5.64772 6.62372 5.74507 6.70717 5.86996C6.79062 5.99485 6.83516 6.14169 6.83516 6.29189C6.83516 6.49332 6.75515 6.68649 6.61272 6.82891C6.47029 6.97134 6.27712 7.05136 6.0757 7.05136ZM8.35409 7.05136C8.20388 7.05136 8.05704 7.00681 7.93215 6.92336C7.80726 6.83991 7.70992 6.7213 7.65244 6.58253C7.59495 6.44375 7.57991 6.29105 7.60922 6.14373C7.63852 5.99641 7.71085 5.86109 7.81707 5.75487C7.92328 5.64866 8.0586 5.57633 8.20592 5.54702C8.35324 5.51772 8.50595 5.53276 8.64472 5.59024C8.78349 5.64772 8.90211 5.74507 8.98556 5.86996C9.06901 5.99485 9.11355 6.14169 9.11355 6.29189C9.11355 6.49332 9.03354 6.68649 8.89111 6.82891C8.74868 6.97134 8.55551 7.05136 8.35409 7.05136Z">
</path>
</svg> Comment
</li>
</ul>
</div>
<p>Learning programming can be an exciting journey! Whether you're a beginner or looking to expand your skills, there are plenty of resources available to help you get started. Here's a roadmap to guide you</p>
<p>
Choose a Programming Language: There are many languages to choose from, such as Python, JavaScript, Java, C++, and more. Consider your goals and interests when selecting a language. Python is often recommended for beginners due to its readability and versatility.
Online Tutorials and Courses: Websites like Codecademy, Coursera, edX, and Udemy offer courses for beginners to advanced programmers. They provide structured lessons, interactive coding exercises, and projects to help you learn.
Books: There are countless programming books available for every skill level and language. Some popular beginner books include "Automate the Boring Stuff with Python" by Al Sweigart and "Eloquent JavaScript" by Marijn Haverbeke.
Practice, Practice, Practice: Programming is a skill that requires practice. Start small by writing simple programs, then gradually tackle more complex projects. Websites like LeetCode and HackerRank offer coding challenges to help you sharpen your skills.
Join Coding Communities: Join online forums, programming communities, and local meetups to connect with other programmers. Platforms like Stack Overflow and GitHub are great places to ask questions, share code, and collaborate on projects.
Build Projects: Building projects is one of the most effective ways to learn programming. Start with small projects and gradually work your way up to larger ones. Think of something you're passionate about or a problem you want to solve, and use programming to create a solution.
Contribute to Open Source: Contributing to open-source projects on platforms like GitHub is a fantastic way to gain real-world experience and collaborate with other developers. You can start by fixing bugs, adding features, or improving documentation on projects that interest you.
Stay Curious and Persistent:
</p>
<blockquote>
<p>" Programming can be challenging at times, but don't get discouraged. Stay curious, keep learning, and don't be afraid to make mistakes. The more you practice, the better you'll become.
Remember, learning programming is a journey, so be patient with yourself and celebrate your progress along the way. Good luck!"</p>
<h3>Jhon Arzu-Gil</h3>
<div class="bolckquote-icons">
<img class="blockquote-icon-01" src="assets/img/inner-pages/blockquote-icon-01.svg" alt="">
<img class="blockquote-icon-02" src="assets/img/inner-pages/blockquote-icon-02.svg" alt="">
</div>
</blockquote>
<h3>Our Begin Now To Being</h3>
<p>I started learning programming through an app on the play store called solo learn. At first I would go through a lesson then I would write down notes for that lesson all to better increase my recall I didn't just watch the videos I followed along every keystroke.That way it feels like I retain a lot more of that information</p>
<div class="blog-details-img-group">
<div class="row g-4">
<div class="col-lg-6">
<div class="blog-details-img magnetic-item">
<img class="img-fluid" src="assets/img/home-6/profileLinkedIn%20copy.jpeg" alt="">
</div>
</div>
<div class="col-lg-6">
<div class="row g-4">
<div class="col-lg-12">
<div class="blog-details-img magnetic-item">
<img class="img-fluid" src="assets/img/inner-pages/blog-dt-03.png" alt="">
</div>
</div>
<div class="col-lg-12">
<div class="blog-details-img magnetic-item">
<img class="img-fluid" src="assets/img/inner-pages/blog-dt-04.png" alt="">
</div>
</div>
</div>
</div>
</div>
</div>
<h3></h3>
<p>
Deciding between learning web development or mobile development depends on your interests, career goals, and the type of projects you want to work on. Here's a breakdown of both:
Web Development:
Frontend Development: This involves building the user interface and user experience of websites using HTML, CSS, and JavaScript. You'll work on creating responsive and interactive websites that users can access through web browsers.
Backend Development: Backend development involves working with server-side technologies to handle the logic, database interactions, and other server-related tasks. Common backend languages include Python (Django, Flask), JavaScript (Node.js), Ruby (Ruby on Rails), and PHP.
Full Stack Development: Full stack developers work on both the frontend and backend of web applications. They have a broad skill set and can handle everything from designing user interfaces to managing databases and server-side logic.
Mobile Development:
iOS Development: If you're interested in developing apps for Apple devices like iPhones and iPads, you'll need to learn Swift or Objective-C. iOS development involves using Apple's Xcode IDE and frameworks like UIKit to create native iOS apps.
Android Development: Developing apps for Android devices requires knowledge of Java or Kotlin. Android Studio is the official IDE for Android development, and you'll use it to build apps that run on a wide range of Android devices.
Cross-Platform Development: Alternatively, you can learn cross-platform development frameworks like React Native, Flutter, or Xamarin. These frameworks allow you to write code once and deploy it on both iOS and Android platforms, saving time and effort.
Factors to Consider:
Job Market: Research the job market in your area to see which type of development is in higher demand. Both web and mobile development offer excellent career opportunities, but the demand may vary depending on location and industry.
Personal Interest: Consider which type of development aligns better with your interests and strengths. Do you enjoy working on frontend interfaces, building robust backend systems, or creating mobile apps for specific platforms?
Project Scope: Think about the type of projects you want to work on. Web development is ideal for building websites, web applications, and software as a service (SaaS) products. Mobile development is great for creating native or cross-platform mobile apps.
Ultimately, there's no right or wrong choice between web and mobile development. Both paths offer rewarding career opportunities and the chance to work on exciting projects. If you're unsure, you can always explore both areas and see which one resonates with you more. Happy coding!
</p>
<div class="blog-tag-and-social">
<div class="tag">
<h6>Tag:</h6>
<ul>
<li><a href="I.T%20Services%20/Web%20Development%20service-details.php">Web Development</a></li>
<li><a href="I.T%2520Services%2520/Software%20Development%20service-details.php">Software Development</a></li>
<li><a href="I.T%2520Services%2520/Website%20Optimization%20service-details.php">Website Optimization</a></li>
<li><a href="I.T%2520Services%2520/Digital%20Marketing%20service-details.php">Digital Marketing</a></li>
</ul>
</div>
<div class="social">
<h6>Share On:</h6>
<ul>
<li><a href="https://www.facebook.com/CloudTechnologyComputingCorporation"><i class="bx bxl-facebook" target="_blank"></i></a></li>
<li><a href="https://twitter.com/CTCCorporation"><i class="bx bxl-twitter" target="_blank"></i></a></li>
<li><a href="https://www.instagram.com/cloudtechnologycomputing" target="_blank"><i class="bx bxl-instagram"></i></a></li>
<li><a href="https://www.pinterest.com/CloudTechnologyComputing" target="_blank" ><i class="bx bxl-pinterest"></i></a></li>
</ul>
</div>
</div>
</div>
</div>
<div class="col-lg-4">
<div class="widget-area">
<div class="single-widgets widget_search">
<form>
<div class="wp-block-search__inside-wrapper ">
<input type="search" id="wp-block-search__input-1" class="wp-block-search__input" name="s" value=""
placeholder="Search Here" required="">
<button type="submit" class="wp-block-search__button primary-btn3">
Search
</button>
</div>
</form>
</div>
<div class="single-widgets widget_egns_categoris">
<div class="widget-title">
<h4>Category</h4>
</div>
<ul class="wp-block-categoris-cloud">
<li> <a href="I.T%20Services%20/Web%20Development%20service-details.php" class="dropdown-item">Web Development Services<span class="number-of-categoris">(1)</span></a></li>
<li><a href="I.T%20Services%20/Software%20Development%20service-details.php" class="nav-item nav-link">Software Development Services<span class="number-of-categoris">(1)</span></a></li>
<li> <a href="I.T%20Services%20/Cloud%20Solutions%20service-details.php" class="dropdown-item">Cloud Solutions Services<span class="number-of-categoris">(1)</span></a></li>
<li> <a href="I.T%20Services%20/S.E.O%20service-details.php" class="dropdown-item">S.E.O Services<span class="number-of-categoris">(1)</span></a></li>
<li> <a href="I.T%20Services%20/Data%20Analytics%20service-details.php" class="dropdown-item">Data Analytics Services<span class="number-of-categoris">(1)</span></a></li>
<li> <a href="I.T%20Services%20/Data%20Analytics%20service-details.php" class="dropdown-item">Digital Marketing Services<span class="number-of-categoris">(1)</span></a></li>
<li> <a href="I.T%20Services%20/Website%20Optimization%20service-details.php" class="dropdown-item">Website Optimization Services<span class="number-of-categoris">(1)</span></a></li>
<li><a href="I.T%20Services%20/Mobile%20Development%20service-details.php" class="nav-item nav-link">Mobile Development Services<span class="number-of-categoris">(1)</span></a></li>
<li> <a href="I.T%20Services%20/Wordpress%20Development%20service-details.php" class="dropdown-item">Wordpress Development Services<span class="number-of-categoris">(1)</span></a></li>
<li> <a href="I.T%20Services%20/SAP%20Consulting%20service-details.php" class="dropdown-item">SAP Consulting Services<span class="number-of-categoris">(1)</span></a></li>
<li> <a href="I.T%20Services%20/IT%20Consulting%20service-details.php" class="dropdown-item">IT Consulting Services<span class="number-of-categoris">(1)</span></a></li>
<li> <a href="I.T%20Services%20/Artificial%20Intelligence%20service-details.php" class="dropdown-item">Artificial Intelligence Services<span>UI/UX Design</span> <span class="number-of-categoris">(1)</span></a></li>
</ul>
</div>
<div class="single-widgets widget_egns_recent_post">
<div class="widget-title">
<h4>Newest Posts</h4>
</div>
<div class="recent-post-wraper">
<div class="widget-cnt">
<div class="wi">
<a href="blog-details.html"><img src="assets/img/home-6/profileLinkedIn%20copy.jpeg" alt="image"></a>
</div>
<div class="wc">
<h6><a href="blog-details.html">Learn Programming.</a></h6>
<a href="blog.html">May 4, 2024</a>
</div>
</div>
</div>
</div>
<div class="single-widgets widget_egns_tag">
<div class="widget-title">
<h4>All Tag</h4>
</div>
<p class="wp-block-tag-cloud">
<ul><li> <a href="../I.T%20Services%20/Web%20Development%20service-details.php" class="dropdown-item">Web Development Services</a></li>
<li><a href="../I.T%20Services%20/Software%20Development%20service-details.php" class="nav-item nav-link">Software Development Services</a></li>
<li> <a href="../I.T%20Services%20/Cloud%20Solutions%20service-details.php" class="dropdown-item">Cloud Solutions Services</a></li>
<li> <a href="../I.T%20Services%20/S.E.O%20service-details.php" class="dropdown-item">S.E.O Services</a></li>
<li> <a href="../I.T%20Services%20/Data%20Analytics%20service-details.php" class="dropdown-item">Data Analytics Services</a></li>
<li> <a href="../I.T%20Services%20/Digital%20Marketing%20service-details.php" class="dropdown-item">Digital Marketing Services</a></li>
<li> <a href="../I.T%20Services%20/Website%20Optimization%20service-details.php" class="dropdown-item">Website Optimization Services</a></li>
<li><a href="../I.T%20Services%20/Mobile%20Development%20service-details.php" class="nav-item nav-link active">Mobile Development Services</a></li>
<li> <a href="../I.T%20Services%20/Wordpress%20Development%20service-details.php" class="dropdown-item">Wordpress Development Services</a></li>
<li> <a href="../I.T%20Services%20/SAP%20Consulting%20service-details.php" class="dropdown-item">SAP Consulting Services</a></li>
<li> <a href="../I.T%20Services%20/IT%20Consulting%20service-details.php" class="dropdown-item">IT Consulting Services</a></li>
<li> <a href="../I.T%20Services%20/Artificial%20Intelligence%20service-details.php" class="dropdown-item">Artificial Intelligence Services</a></li>
</ul></p>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-12">
<div class="details-navigation">
<div class="single-navigation">
<div class="content">
<a href="LearnProgramming.html">Previous</a>
<h4><a href="LearnProgramming.html">Learn Programming.</a></h4>
</div>
<a href="blog-details.html" class="img">
<img src="/assets/img/computer%20clouds.png" alt="cloud what" alt="">
<div class="arrow">
<svg width="12" height="12" viewBox="0 0 13 13" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M0 1H12M12 1V13M12 1L0.5 12"></path>
</svg>
</div>
</a>
</div>
<div class="single-navigation two">
<a href="blog-details.html" class="img">
<img src="/assets/img/CloudTechnologyComputingAIServices.png" alt="">
<div class="arrow">
<svg width="12" height="12" viewBox="0 0 13 13" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M0 1H12M12 1V13M12 1L0.5 12"></path>
</svg>
</div>
</a>
<div class="content">
<a href="LearnProgramming.html">NEXT </a>
<h4><a href="LearnProgramming.html">Learn Programming.</a></h4>
</div>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-9">
<div class="comments-area sec-mar">
<h3>1 Comment</h3>
<link rel="stylesheet" href="style.css" />
<template class="reply-input-template">
<div class="reply-input container">
<img src="images/" alt="" class="usr-img">
<textarea class="cmnt-input" placeholder="Add a comment..."></textarea>
<button class="bu-primary">SEND</button>
</div>
</template>
<template class="comment-template">
<div class="comment-wrp">
<div class="comment container">
<div class="c-score">
<img src="images/icon-plus.svg" alt="plus" class="score-control score-plus">
<p class="score-number">5</p>
<img src="images/icon-minus.svg" alt="minus" class="score-control score-minus">
</div>
<div class="c-controls">
<a class="delete"><img src="images/icon-delete.svg" alt="" class="control-icon">Delete</a>
<a class="edit"><img src="images/icon-edit.svg" alt="" class="control-icon">Edit</a>
<a class="reply"><img src="images/icon-reply.svg" alt="" class="control-icon">Reply</a>
</div>
<div class="c-user">
<img src="images/avatars/image-maxblagun.webp" alt="" class="usr-img">
<p class="usr-name">Jhon Arzu-Fil</p>
<p class="cmnt-at"> Today</p>
</div>
<p class="c-text">
<span class="reply-to"></span>
<span class="c-body"></span>
</p>
</div><!--comment-->
<div class="replies comments-wrp">
</div><!--replies-->
</div>
</template>
<main>
<div class="comment-section">
<div class="comments-wrp">
</div> <!--commentS wrapper-->
<div class="reply-input container">
<img src="images/avatars/image-juliusomo.webp" alt="" class="usr-img">
<textarea class="cmnt-input" placeholder="Add a comment..."></textarea>
<button class="bu-primary">SEND</button>
</div> <!--reply input-->
</div> <!--comment sectio-->
<div class="modal-wrp invisible">
<div class="modal container">
<h3>Delete comment</h3>
<p>Are you sure you want to delete this comment? This will remove the comment and cant be undone</p>
<button class="yes">YES,DELETE</button>
<button class="no">NO,CANCEL</button>
</div>
</div>
</main>
<script src="app.js"></script>
</div>
<div class="comment-form">
<h3>Leave a comment</h3>
<form>
<div class="row">
<div class="col-md-12 mb-40">
<div class="form-inner">
<input type="text" placeholder="Enter your name">
</div>
</div>
<div class="col-md-6 mb-40">
<div class="form-inner">
<input type="email" placeholder="Enter your email">
</div>
</div>
<div class="col-md-6 mb-40">
<div class="form-inner">
<input type="text" placeholder="Subject">
</div>
</div>
<div class="col-12 mb-40">
<div class="form-inner">
<textarea placeholder="Your message"></textarea>
</div>
</div>
<div class="col-12">
<div class="form-inner">
<button class="primary-btn3" type="submit">Post a Comment</button>
</div>
</div>
</div>
</form>
</div>
</div>
</div>
</div>
<!-- Start Footer section -->
<!-- Start Footer section -->
<!-- Start Footer section -->
<footer class="four">
<div class="footer-top">
<div class="container">
<div class="row">
<div class="col-lg-12">
<div class="footer-top-content">
<div class="footer-logo">
<a href="index.html"><!--<img alt="image" src="assets/img/logo.svg"> --> <p style="color : white"> Cloud Technology Computing</p></a></div>
<div class="footer-contect">
<div class="icon">
<svg width="33" height="33" viewBox="0 0 33 33" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_1999_295)">
<path
d="M26.0808 20.4417C25.4052 19.7383 24.5903 19.3622 23.7267 19.3622C22.87 19.3622 22.0481 19.7313 21.3447 20.4348L19.1438 22.6287C18.9627 22.5312 18.7816 22.4407 18.6075 22.3501C18.3568 22.2248 18.12 22.1063 17.918 21.981C15.8564 20.6716 13.9828 18.9652 12.1859 16.7573C11.3153 15.6569 10.7302 14.7305 10.3054 13.7903C10.8765 13.2679 11.4058 12.7247 11.9212 12.2023C12.1162 12.0073 12.3113 11.8053 12.5063 11.6103C13.9689 10.1477 13.9689 8.25321 12.5063 6.79058L10.6049 4.88917C10.3889 4.67326 10.1661 4.45038 9.95713 4.22751C9.53923 3.79569 9.10045 3.34993 8.64773 2.93204C7.97214 2.26341 7.16421 1.9082 6.3145 1.9082C5.46478 1.9082 4.64293 2.26341 3.94644 2.93204C3.93947 2.939 3.93947 2.939 3.93251 2.94597L1.56445 5.33492C0.672947 6.22643 0.164512 7.31295 0.0530735 8.57359C-0.114084 10.6073 0.484896 12.5018 0.944577 13.7415C2.07289 16.7852 3.75839 19.606 6.27271 22.6287C9.32332 26.2713 12.9938 29.1478 17.1867 31.1746C18.7886 31.9338 20.9268 32.8323 23.3158 32.9855C23.462 32.9924 23.6152 32.9994 23.7545 32.9994C25.3634 32.9994 26.7146 32.4213 27.7733 31.2721C27.7802 31.2582 27.7942 31.2512 27.8011 31.2373C28.1633 30.7985 28.5812 30.4015 29.02 29.9767C29.3195 29.6911 29.6259 29.3916 29.9254 29.0782C30.6149 28.3608 30.9771 27.525 30.9771 26.6683C30.9771 25.8047 30.608 24.9759 29.9045 24.2794L26.0808 20.4417ZM28.5742 27.7758C28.5673 27.7758 28.5673 27.7827 28.5742 27.7758C28.3026 28.0683 28.024 28.3329 27.7245 28.6255C27.2718 29.0573 26.8121 29.51 26.3803 30.0184C25.6768 30.7707 24.848 31.1259 23.7615 31.1259C23.657 31.1259 23.5456 31.1259 23.4411 31.1189C21.3726 30.9866 19.4503 30.1786 18.0085 29.4891C14.0664 27.5807 10.6049 24.8714 7.72837 21.4377C5.35334 18.5752 3.76535 15.9285 2.71366 13.0868C2.06592 11.3526 1.82912 10.0014 1.93359 8.72682C2.00324 7.91193 2.31666 7.23633 2.89474 6.65825L5.26976 4.28323C5.61104 3.96284 5.97322 3.78872 6.32843 3.78872C6.76721 3.78872 7.12242 4.05339 7.3453 4.27626C7.35226 4.28323 7.35923 4.29019 7.36619 4.29716C7.79105 4.69415 8.19501 5.10508 8.61987 5.54387C8.83578 5.76675 9.05866 5.98962 9.28153 6.21946L11.1829 8.12087C11.9212 8.85915 11.9212 9.54171 11.1829 10.28C10.981 10.482 10.7859 10.6839 10.584 10.879C9.99891 11.4779 9.44173 12.0351 8.83578 12.5784C8.82185 12.5923 8.80792 12.5993 8.80096 12.6132C8.20198 13.2122 8.31342 13.7972 8.43878 14.1942C8.44575 14.2151 8.45271 14.236 8.45968 14.2569C8.95418 15.4549 9.65067 16.5832 10.7093 17.9274L10.7163 17.9344C12.6386 20.3024 14.6654 22.1481 16.9011 23.562C17.1867 23.7431 17.4792 23.8894 17.7578 24.0287C18.0085 24.154 18.2453 24.2724 18.4473 24.3978C18.4752 24.4117 18.503 24.4326 18.5309 24.4465C18.7677 24.5649 18.9906 24.6207 19.2204 24.6207C19.7985 24.6207 20.1607 24.2585 20.2791 24.1401L22.6611 21.7581C22.8979 21.5213 23.274 21.2357 23.7128 21.2357C24.1446 21.2357 24.4998 21.5074 24.7157 21.7442C24.7227 21.7511 24.7227 21.7511 24.7296 21.7581L28.5673 25.5958C29.2847 26.3062 29.2847 27.0375 28.5742 27.7758Z" />
<path
d="M17.8345 7.85011C19.6593 8.15656 21.3169 9.02021 22.6403 10.3435C23.9636 11.6669 24.8203 13.3245 25.1337 15.1493C25.2103 15.609 25.6073 15.9294 26.06 15.9294C26.1157 15.9294 26.1645 15.9224 26.2202 15.9154C26.7356 15.8319 27.0769 15.3443 26.9933 14.8289C26.6172 12.621 25.5725 10.6082 23.9775 9.01324C22.3826 7.41829 20.3697 6.37355 18.1618 5.99745C17.6464 5.91387 17.1659 6.25515 17.0753 6.76359C16.9848 7.27202 17.3191 7.76653 17.8345 7.85011Z" />
<path
d="M32.9619 14.557C32.3421 10.9213 30.6287 7.61301 27.996 4.98029C25.3633 2.34757 22.055 0.634209 18.4193 0.0143347C17.9108 -0.0762086 17.4303 0.272035 17.3397 0.780471C17.2562 1.29587 17.5974 1.77645 18.1128 1.86699C21.3585 2.41722 24.3185 3.95645 26.6727 6.30362C29.0268 8.65774 30.5591 11.6178 31.1093 14.8634C31.1859 15.3231 31.5829 15.6435 32.0356 15.6435C32.0913 15.6435 32.1401 15.6365 32.1958 15.6296C32.7042 15.553 33.0525 15.0654 32.9619 14.557Z" />
</g>
</svg>
</div>
<div class="content">
<span>Call Any Time</span>
<h6><a href="tel: 12489385567">1-248-938-5567</a></h6>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="container">
<div class="row g-lg-4 gy-5">
<div class="col-lg-4 col-sm-6 d-flex">
<div class="footer-widget">
<div class="footer-contact mb-40">
<h4>
<svg width="14" height="20" viewBox="0 0 14 20" xmlns="http://www.w3.org/2000/svg">
<path
d="M12.9213 3.4249C11.7076 1.33021 9.55162 0.0504883 7.15416 0.00158203C7.05181 -0.000527344 6.9488 -0.000527344 6.84642 0.00158203C4.449 0.0504883 2.29306 1.33021 1.07923 3.4249C-0.161468 5.566 -0.195414 8.13787 0.988414 10.3047L5.94791 19.3823C5.95013 19.3863 5.95236 19.3904 5.95466 19.3944C6.17287 19.7736 6.56377 20 7.00037 20C7.43693 20 7.82783 19.7736 8.04599 19.3944C8.0483 19.3904 8.05052 19.3863 8.05275 19.3823L13.0122 10.3047C14.196 8.13787 14.162 5.566 12.9213 3.4249ZM7.00029 9.06252C5.44947 9.06252 4.18779 7.80084 4.18779 6.25002C4.18779 4.6992 5.44947 3.43752 7.00029 3.43752C8.55111 3.43752 9.81279 4.6992 9.81279 6.25002C9.81279 7.80084 8.55115 9.06252 7.00029 9.06252Z" />
</svg>
Address
</h4>
<a href="https://www.google.com/search?q=Cloud+Technology+Computing+Corporation">4409 Caplin St,Houston,Texas,77026</a>
</div>
<div class="footer-contact mb-40">
<h4>
<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
<path
d="M7.29163 14.6767V18.5417C7.29227 18.6731 7.33422 18.8009 7.41154 18.9071C7.48886 19.0133 7.59764 19.0924 7.72245 19.1334C7.84727 19.1743 7.9818 19.1749 8.10699 19.1351C8.23217 19.0954 8.34167 19.0172 8.41997 18.9117L10.6808 15.8351L7.29163 14.6767ZM19.7375 0.115895C19.6436 0.0490233 19.533 0.00942685 19.418 0.00148505C19.303 -0.00645676 19.188 0.0175656 19.0858 0.0708953L0.3358 9.86256C0.227918 9.91958 0.13903 10.0069 0.0800422 10.1137C0.0210548 10.2205 -0.00546466 10.3422 0.00373833 10.4639C0.0129413 10.5855 0.0574664 10.7019 0.131849 10.7986C0.206232 10.8953 0.307236 10.9683 0.422467 11.0084L5.63497 12.7901L16.7358 3.2984L8.1458 13.6476L16.8816 16.6334C16.9683 16.6625 17.0603 16.6723 17.1512 16.6622C17.2421 16.652 17.3296 16.6221 17.4078 16.5746C17.4859 16.527 17.5526 16.463 17.6034 16.3869C17.6542 16.3108 17.6877 16.2246 17.7016 16.1342L19.9933 0.717562C20.0103 0.603437 19.9953 0.486844 19.9502 0.380665C19.905 0.274486 19.8314 0.182855 19.7375 0.115895Z" />
</svg>
Say Hello
</h4>
<a href="mailto:Jgil20@me.com">Jgil20@me.com</a><br>
<a href="mailto:Jarzugil20@gmail.com">Jarzugil20@gmail.com</a>
</div>
<div class="footer-contact">
<h6>See Our New updates</h6>
<form>
<div class="form-inner">
<input type="text" placeholder="Email here...">
<button aria-label="submit" type="submit">
<svg width="17" height="17" viewBox="0 0 13 13" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M0 1H12M12 1V13M12 1L0.5 12"></path>
</svg>
</button>
</div>
</form>
</div>
</div>
</div>
<div class="col-lg-3 col-sm-6 d-flex justify-content-lg-start justify-content-sm-end">
<div class="footer-widget">
<div class="widget-title">
<h4>Our Solutions</h4>
</div>
<div class="menu-container">
<ul>
<li> <a href="../I.T%20Services%20/Web%20Development%20service-details.php">Web Development Services</a></li>
<li><a href="../I.T%20Services%20/Software%20Development%20service-details.php">Software Development Services</a></li>
<li> <a href="../I.T%20Services%20/Cloud%20Solutions%20service-details.php" >Cloud Solutions Services</a></li>
<li> <a href="../I.T%20Services%20/S.E.O%20service-details.php" >S.E.O Services</a></li>
<li> <a href="../I.T%20Services%20/Data%20Analytics%20service-details.php">Data Analytics Services</a></li>
<li> <a href="../I.T%20Services%20/Digital%20Marketing%20service-details.php"> Digital Marketing Services</a></li>
<li> <a href="../I.T%20Services%20/Website%20Optimization%20service-details.php"> Website Optimization Services</a></li>
<li><a href="../I.T%20Services%20/Mobile%20Development%20service-details.php"> Mobile Development Services</a></li>
<li> <a href="../I.T%20Services%20/Wordpress%20Development%20service-details.php"> Wordpress Development Services</a></li>
<li> <a href="../I.T%20Services%20/SAP%20Consulting%20service-details.php"> SAP Consulting Services</a></li>
<li> <a href="../I.T%20Services%20/IT%20Consulting%20service-details.php"> IT Consulting Services</a></li>
<li> <a href="../I.T%20Services%20/Artificial%20Intelligence%20service-details.php"> Artificial Intelligence Services</a></li>
</ul>
</div>
</div>
</div>
<div class="col-lg-2 col-sm-6 d-flex justify-content-lg-center">
<div class="footer-widget">
<div class="widget-title">
<h4>Company</h4>
</div>
<div class="menu-container">
<ul>
<li><a href="about.html">About Us</a></li>
<li><a href="case-study.html">Case Study</a></li>
<li><a href="blog.html">News & Article</a></li>
<li><a href="team1.html">Our Team</a></li>
<li><a href="project.html">All Portfolio</a></li>
<li><a href="pricing.html">Pricing Plan</a></li>
</ul>
</div>
</div>
</div>
<div class="col-lg-3 col-sm-6 d-flex justify-content-sm-end">
<div class="footer-widget">
<div class="widget-title">
<h4>Resources</h4>
</div>
<div class="menu-container">
<ul>
<li><a href="#">Support Area</a></li>
<li><a href="#">Support Policy</a></li>
<li><a href="#">Terms & Conditions</a></li>
<li><a href="#">Privacy Policy</a></li>
<li><a href="#">Career</a></li>
<li><a href="pricing.html">Pricing Plan</a></li>
</ul>
</div>
</div>
</div>
</div>
</div>
<div class="footer-btm">
<div class="container">
<div class="row">
<div class="col-lg-12">
<div class="footer-btn-content">
<div class="copyright-area">
<p>©Copyright 2023 <a href="https://www.cloudtechnologycomputing.com">Cloud Technology Computing</a> | Design By <a href="https://www.arzugil.com/">Jhon Arzu-Gil</a></p>
</div>
<div class="footer-social">
<ul>
<li><a href="https://www.facebook.com/CloudTechnologyComputingCorporation" aria-label="Faceebook Page" target="_blank"><i class="bx bxl-facebook"></i></a></li>
<li><a href="https://github.com/Jgil20" aria-label="Github Page" target="_blank"><i class="bi bi-github"></i></a></li>
<li><a href="https://www.linkedin.com/in/jhongil"aria-label="LinkedIn Page" target="_blank"><i class="bi bi-linkedin"></i></a></li>
<li><a href="https://www.google.com/search?q=Cloud+Technology+Computing+Corporation"aria-label="Google Business Page" target="_blank"><i class="bi bi-google"></i></a></li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
</footer>
<!-- End Footer section -->
<!--cursor design-->
<!-- <div class="cursor"></div> -->
<!--cursor design-->
<!-- Main jQuery -->
<script src="assets/js/jquery-3.6.0.min.js"></script>
<!-- Popper and Bootstrap JS -->
<script src="assets/js/popper.min.js"></script>
<script src="assets/js/bootstrap.min.js"></script>
<!-- Swiper slider JS -->
<script src="assets/js/swiper-bundle.min.js"></script>
<!-- Waypoints JS -->
<script src="assets/js/waypoints.min.js"></script>
<!-- Counterup JS -->
<script src="assets/js/jquery.counterup.min.js"></script>
<!-- Isotope JS -->
<script src="assets/js/isotope.pkgd.min.js"></script>
<!-- Fancybox JS -->
<script src="assets/js/jquery.fancybox.min.js"></script>
<!-- GSAP JS -->
<script src="assets/js/gsap.min.js"></script>
<script src="assets/js/simpleParallax.min.js"></script>
<script src="assets/js/TweenMax.min.js"></script>
<!-- Marquee JS -->
<script src="assets/js/jquery.marquee.min.js"></script>
<!-- Wow JS -->
<script src="assets/js/wow.min.js"></script>
<!-- Custom JS -->
<script src="assets/js/preloader.js"></script>
<script src="assets/js/custom.js"></script>
<script>
$(".marquee_text").marquee({
direction: "left",
duration: 20000,
gap: 50,
delayBeforeStart: 0,
duplicated: true,
startVisible: true,
});
$(".marquee_text3").marquee({
direction: "left",
duration: 30000,
gap: 50,
delayBeforeStart: 0,
duplicated: true,
startVisible: true,
});
</script>
</body>
</html>