-
Notifications
You must be signed in to change notification settings - Fork 0
/
blog-details.php
975 lines (882 loc) · 67.2 KB
/
blog-details.php
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
<!doctype html>
<html lang="en">
<head>
<!-- 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">
<!-- Title -->
<title>Cloud Technology Computing: Comprehensive Guide on Benefits, Types, and Future Trends</title>
<link rel="icon" href="assets/img/sm-logo.svg" type="image/gif" sizes="20x20">
</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>
<!-- Start header section -->
<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/Data%20Analytics%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">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" target="_blank" class="dropdown-item">Shop Online</a></li>
<li> <a href="https://play.google.com/store/apps/dev?id=8040499476760752928" target="_blank" class="dropdown-item">Apps</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 class="menu-item active"><a href="blog.php">Blog</a></li>
<li class="menu-item-has-children">
<a href="about.php" 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> <!-- End header section -->
<!-- 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>"Cloud Technology Computing: Transforming the Future"</h1>
<div class="breadcrumb-list">
<a href="index.php">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/inner-pages/blog-dt-01.png" alt="">
</div>
</div>
</div>
<div class="row g-lg-4 gy-5">
<div class="col-lg-8">
<div class="blog-details-content">
<span>Cloud Computing</span>
<h2>Cloud Technology Computing: Transforming the Future</h2>
<div class="author-and-meta">
<div class="author-area">
<div class="author-img">
<img src="assets/img/inner-pages/ProfilePictJhonArzuGil.webp" alt="Jhon Arzu-Gil, an Application Developer at IBM, sitting in a chair, dressed in a black shirt and gray pants, with a smartphone and laptop on a table beside him.">
</div>
<div class="author-content">
<h6>By, <span>Jhon Arzu-Gil</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>29 Aug, 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><?php
$servername = "127.0.0.1:3306";
$username = "u881526474_Jhon";
$password = "Spiderman8085$";
$dbname = "u881526474_Cloud";
// Create connection
$conn = new mysqli($servername, $username, $password, $dbname);
// Check connection
if ($conn->connect_error) {
die("Connection failed: " . $conn->connect_error);
}
// Assuming connection is already established
// The name of the page you are tracking
$page_name = 'unique_page_identifier';
// Check if the page already exists in the table
$sql = "SELECT views FROM page_views WHERE page_name = ?";
$stmt = $conn->prepare($sql);
$stmt->bind_param('s', $page_name);
$stmt->execute();
$stmt->store_result();
if ($stmt->num_rows > 0) {
// If the page exists, increment the view count
$stmt->bind_result($views);
$stmt->fetch();
$views++;
$sql = "UPDATE page_views SET views = ? WHERE page_name = ?";
$stmt = $conn->prepare($sql);
$stmt->bind_param('is', $views, $page_name);
$stmt->execute();
} else {
// If the page does not exist, insert it with 1 view
$views = 1;
$sql = "INSERT INTO page_views (page_name, views) VALUES (?, ?)";
$stmt = $conn->prepare($sql);
$stmt->bind_param('si', $page_name, $views);
$stmt->execute();
}
$stmt->close();
$conn->close();
?>
<?php echo $views; ?> Views
</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>
0 Comment
</li>
</ul>
</div>
<h3>Introduction to Cloud Technology Computing</h3>
<p>Cloud technology computing has revolutionized the way businesses operate, providing unparalleled flexibility, efficiency, and scalability. But what exactly is cloud computing, and why has it become such a game-changer in the tech world? In this article, we’ll dive deep into the world of cloud technology, explore its various types, understand the benefits, challenges, and risks, and glimpse into its future trends. Ready to embark on this journey to the clouds? Let’s get started.</p>
<h3>What Is Cloud Technology?</h3>
<p>At its core, cloud technology refers to the delivery of computing services over the internet. These services include servers, storage, databases, networking, software, analytics, and intelligence. Instead of owning physical hardware or software, companies can access and pay for these services on-demand. Think of it as renting a fully equipped office rather than building one from scratch.</p>
<blockquote>
<h3>Evolution of Cloud Computing</h3>
<p>"Cloud computing didn’t just appear overnight. It evolved over decades, starting from the concept of time-sharing in the 1960s, where multiple users could share processing power from a single machine. Fast forward to the 2000s, and the introduction of virtual machines and the internet's widespread adoption paved the way for modern cloud computing as we know it today."</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>Types of Cloud Computing</h3>
<p> Not all clouds are created equal. Depending on your business needs, you can choose between public, private, or hybrid clouds. Let’s break down each type:</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/inner-pages/CloudComping.avif" 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/Website Optimization.avif" alt="">
</div>
</div>
<div class="col-lg-12">
<div class="blog-details-img magnetic-item">
<img class="img-fluid" src="assets/img/inner-pages/Wordpress2.avif" alt="">
</div>
</div>
</div>
</div>
</div>
</div>
<h3>Public Cloud Key Features</h3>
<p>Public clouds are the most common type of cloud computing. They are owned and operated by third-party cloud service providers who deliver computing resources like servers and storage over the internet. Some popular examples include Amazon Web Services (AWS), Microsoft Azure, and Google Cloud.</p>
<h3>Advantages and Disadvantages</h3>
<p>Public clouds are the most common type of cloud computing. They are owned and operated by third-party cloud service providers who deliver computing resources like servers and storage over the internet. Some popular examples include Amazon Web Services (AWS), Microsoft Azure, and Google Cloud.</p>
<h3>Private Cloud Key Features</h3>
<p>Private clouds are dedicated exclusively to one organization. They can be hosted on-premises or by a third-party provider, but the key difference is that the services and infrastructure are maintained on a private network.</p>
<h3>Advantages and Disadvantages</h3>
<p>Private clouds offer greater control and security, making them ideal for businesses that handle sensitive data. However, this comes with higher costs and the need for IT management.</p>
<h3>Advantages and Disadvantages</h3>
<p>Private clouds offer greater control and security, making them ideal for businesses that handle sensitive data. However, this comes with higher costs and the need for IT management.</p>
<h3>Hybrid Cloud</h3>
<h4>Key Features</h4>
<p>A hybrid cloud combines both public and private clouds, allowing data and applications to be shared between them. This setup provides businesses with greater flexibility and more deployment options.</p>
<h4>Advantages and Disadvantages</h4>
<p>The hybrid approach offers the best of both worlds: the scalability of a public cloud and the security of a private cloud. However, managing a hybrid cloud can be complex and may require sophisticated IT expertise.</p>
<h3>Cloud Computing Services Models</h3>
<p>Once you've chosen the type of cloud, you’ll also need to select a service model. The three main ones are:</p>
<h4>Infrastructure as a Service (IaaS)</h4>
<p>IaaS provides virtualized computing resources over the internet. It’s like having a virtual data center, where you rent servers, storage, and networking capabilities. You manage the operating systems and applications, while the provider handles the hardware and infrastructure.</p>
<h4>Platform as a Service (PaaS)</h4>
<p>PaaS goes a step further by providing a platform that allows developers to build, test, and deploy applications without worrying about the underlying infrastructure. Think of it as a ready-to-use development environment.</p>
<h4>Software as a Service (SaaS)</h4>
<p>SaaS is the most familiar to most people. It delivers software applications over the internet, on a subscription basis. Examples include Google Workspace, Microsoft Office 365, and Salesforce. With SaaS, the provider manages everything, and users simply access the software via a web browser.</p>
<h3>Benefits of Cloud Technology Computing</h3>
<p>So, why are businesses flocking to the cloud? Here are some key benefits:</p>
<h4>Scalability</h4>
<p>One of the most significant advantages of cloud computing is its scalability. Need more storage? Just a few clicks, and you’ve got it. This flexibility allows businesses to grow without the heavy upfront costs of traditional IT infrastructure.</p>
<h4>Cost Efficiency</h4>
<p>With cloud computing, there’s no need to invest in expensive hardware or worry about maintenance. You pay for what you use, and providers take care of the rest. This can significantly reduce operational costs, especially for small and medium-sized businesses.</p>
<h4>Accessibility and Mobility</h4>
<p>In today’s mobile world, cloud computing offers the convenience of accessing data and applications from anywhere, at any time, using any device with internet connectivity. This has been a game-changer for remote work and collaboration.</p>
<h4>Data Security</h4>
<p>While data security is a concern (which we’ll address later), many cloud providers offer robust security measures, including encryption, identity management, and regular security updates. In many cases, these providers offer better security than on-premises solutions.</p>
<h3>Challenges and Risks in Cloud Computing</h3>
<p>Cloud technology isn’t without its challenges and risks. Here are a few to keep in mind:</p>
<h4>Data Privacy Concerns</h4>
<p>When you store data in the cloud, you’re essentially handing it over to a third party. This raises concerns about who has access to that data and how it’s protected. Companies must ensure that their cloud provider complies with privacy laws and has stringent security protocols in place.</p>
<h4>Downtime and Reliability Issues</h4>
<p>Cloud services are dependent on internet connectivity. Any downtime or service disruption can lead to significant business interruptions. Although rare, outages from even the most reliable providers can happen, so it’s essential to have a backup plan.</p>
<h4>Compliance and Legal Challenges</h4>
<p>Different countries have different regulations regarding data storage and privacy. Businesses must ensure they comply with these regulations when storing data in the cloud, especially when dealing with international customers.</p>
<h3>Future Trends in Cloud Technology</h3>
<p>The cloud is continually evolving, and new trends are shaping its future. Here are a few to watch out for:</p>
<h4>AI and Machine Learning Integration</h4>
<p>Artificial Intelligence (AI) and Machine Learning (ML) are being integrated into cloud services to enhance automation, data analysis, and decision-making processes. This will enable businesses to harness the power of AI without investing in specialized hardware.</p>
<h4>Edge Computing</h4>
<p>Edge computing involves processing data closer to where it’s generated, rather than relying on a centralized data center. This reduces latency and improves performance, especially for IoT devices and real-time applications.</p>
<h4>Serverless Computing</h4>
<p>Serverless computing allows developers to build and run applications without worrying about the underlying infrastructure. You only pay for the compute resources you use, making it a cost-effective option for many businesses.</p>
<h3>How to Get Started with Cloud Technology</h3>
<p>Ready to move to the cloud? Here’s how to get started:</p>
<h4>Choosing the Right Cloud Service Provider</h4>
<p>Research and compare different cloud providers based on your business needs, budget, and security requirements. Popular providers include AWS, Azure, and Google Cloud, but there are many others to choose from.</p>
<h4>Planning and Migration Strategy</h4>
<p>Don’t rush into the cloud. Plan your migration carefully by assessing your current infrastructure, setting clear goals, and creating a timeline. Consider using a phased approach to minimize disruptions.</p>
<h4>Best Practices for Cloud Management</h4>
<p>Once you’re in the cloud, effective management is crucial. Implement best practices such as regular monitoring, cost management, and security audits to ensure your cloud environment remains efficient and secure.</p>
<h3>Conclusion</h3>
<p>Cloud technology computing is more than just a buzzword—it’s a transformative force that’s reshaping the business landscape. By understanding its benefits, challenges, and future trends, you can make informed decisions about how to leverage the cloud for your organization. Whether you’re looking to scale your operations, reduce costs, or innovate with the latest technologies, the cloud offers a world of possibilities.</p>
<div class="blog-tag-and-social">
<div class="tag">
<h6>Tag:</h6>
<ul>
<li><a href="blog.html">Cloud Computing</a></li>
<li><a href="blog.html">Cloud Technology</a></li>
<li><a href="blog.html">Scalability</a></li>
<li><a href="blog.html">Cost Efficiency</a></li>
</ul>
</div>
<div class="social">
<h6>Share On:</h6>
<ul>
<li><a href="https://www.facebook.com/"><i class="bx bxl-facebook"></i></a></li>
<li><a href="https://twitter.com/"><i class="bx bxl-twitter"></i></a></li>
<li><a href="https://www.instagram.com/"><i class="bx bxl-pinterest-alt"></i></a></li>
<li><a href="https://www.pinterest.com/"><i class="bx bxl-instagram"></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="">
<?php
$servername = "127.0.0.1:3306";
$username = "u881526474_Jhon";
$password = "Spiderman8085$";
$dbname = "u881526474_Cloud";
// Create connection
$conn = new mysqli($servername, $username, $password, $dbname);
// Check connection
if ($conn->connect_error) {
die("Connection failed: " . $conn->connect_error);
}
if ($_SERVER["REQUEST_METHOD"] == "GET") {
$search_query = $_GET['s'];
$sql = "SELECT * FROM posts WHERE title LIKE '%$search_query%' OR content LIKE '%$search_query%'";
$result = $conn->query($sql);
if ($result->num_rows > 0) {
while($row = $result->fetch_assoc()) {
echo "<h2>" . $row["title"]. "</h2><p>" . $row["content"]. "</p><br>";
}
} else {
echo "0 results";
}
}
$conn->close();
?>
<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>
<?php
$servername = "127.0.0.1:3306";
$username = "u881526474_Jhon";
$password = "Spiderman8085$";
$dbname = "u881526474_Cloud";
// Create connection
$conn = new mysqli($servername, $username, $password, $dbname);
// Check connection
if ($conn->connect_error) {
die("Connection failed: " . $conn->connect_error);
}
$sql = "SELECT c.name, COUNT(p.id) as post_count FROM categories c LEFT JOIN posts p ON c.id = p.category_id GROUP BY c.name";
$result = $conn->query($sql);
if ($result->num_rows > 0) {
echo '<ul class="wp-block-categoris-cloud">';
while($row = $result->fetch_assoc()) {
echo '<li><a href="blog.html"><span>' . $row["name"] . '</span> <span class="number-of-categoris">(' . $row["post_count"] . ')</span></a></li>';
}
echo '</ul>';
} else {
echo "No categories found";
}
?>
</div>
<div class="single-widgets widget_egns_recent_post">
<div class="widget-title">
<h4>Newest Posts</h4>
</div>
<div class="recent-post-wraper">
<?php
$sql = "SELECT * FROM posts ORDER BY post_date DESC LIMIT 3";
$result = $conn->query($sql);
if ($result->num_rows > 0) {
while($row = $result->fetch_assoc()) {
echo '<div class="widget-cnt">';
echo '<div class="wi"><a href="blog-details.php?id=' . $row["id"] . '"><img src="' . $row["image"] . '" alt="image"></a></div>';
echo '<div class="wc"><h6><a href="blog-details.php?id=' . $row["id"] . '">' . $row["title"] . '</a></h6>';
echo '<a href="blog.php">' . $row["post_date"] . '</a></div></div>';
}
} else {
echo "No recent posts found";
}
?>
</div>
</div>
<div class="single-widgets widget_egns_tag">
<div class="widget-title">
<h4>All Tag</h4>
</div>
<p class="wp-block-tag-cloud">
<a href="blog.html">Website</a>
<a href="blog.html">Web Design</a>
<a href="blog.html">Development</a>
<a href="blog.html">Graphic Design</a>
<a href="blog.html">Graphic</a>
<a href="blog.html">UI/UX Design</a>
<a href="blog.html">Activities</a>
<a href="blog.html">Software Design</a>
<a href="blog.html">3D Design</a>
</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="blog-details.html">Previous</a>
<h4><a href="blog-details.html">Feugiat Varius Mattis Mass Enim Est Egestas.</a></h4>
</div>
<a href="blog-details.html" class="img">
<img src="assets/img/inner-pages/portfolio-navigation-01.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>
<div class="single-navigation two">
<a href="blog-details.html" class="img">
<img src="assets/img/inner-pages/portfolio-navigation-02.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="blog-details.html">NEXT </a>
<h4><a href="blog-details.html">Donec Finibus Laoreet Exte Eu Pellentesque.</a></h4>
</div>
</div>
</div>
</div>
</div>
-->
<?php
// Database connection
$servername = "127.0.0.1:3306";
$username = "u881526474_Jhon";
$password = "Spiderman8085$";
$dbname = "u881526474_Cloud";
$conn = new mysqli($servername, $username, $password, $dbname);
if ($conn->connect_error) {
die("Connection failed: " . $conn->connect_error);
}
// Handle form submission
if ($_SERVER['REQUEST_METHOD'] === 'POST') {
$name = $conn->real_escape_string($_POST['name']);
$email = $conn->real_escape_string($_POST['email']);
$subject = $conn->real_escape_string($_POST['subject']);
$message = $conn->real_escape_string($_POST['message']);
$sql = "INSERT INTO comments (name, email, subject, message) VALUES ('$name', '$email', '$subject', '$message')";
if ($conn->query($sql) === TRUE) {
echo "New comment added successfully!";
} else {
echo "Error: " . $sql . "<br>" . $conn->error;
}
}
// Retrieve comments
$sql = "SELECT * FROM comments ORDER BY created_at DESC";
$result = $conn->query($sql);
?>
<div class="row">
<div class="col-lg-9">
<div class="comments-area sec-mar">
<h3><?php echo $result->num_rows; ?> Comment(s)</h3>
<?php while($row = $result->fetch_assoc()): ?>
<div class="single-comment">
<div class="author-thumb">
<img src="assets/img/inner-pages/hackerJhonBG.avif" alt="Jhon Arzu-Gil Founder of Cloud Technology Computing Corporation">
</div>
<div class="comment-content">
<div class="author-post">
<div class="author-info">
<h4><?php echo htmlspecialchars($row['name']); ?></h4>
<span><?php echo date("d M, Y h:i a", strtotime($row['created_at'])); ?></span>
</div>
<div class="reply">
<a href="#"><i class="bi bi-arrow-return-right"></i> Reply</a>
</div>
</div>
<p><?php echo htmlspecialchars($row['message']); ?></p>
</div>
</div>
<?php endwhile; ?>
</div>
<div class="comment-form">
<h3>Leave a comment</h3>
<form action="" method="POST">
<div class="row">
<div class="col-md-12 mb-40">
<div class="form-inner">
<input type="text" name="name" placeholder="Enter your name" required>
</div>
</div>
<div class="col-md-6 mb-40">
<div class="form-inner">
<input type="email" name="email" placeholder="Enter your email" required>
</div>
</div>
<div class="col-md-6 mb-40">
<div class="form-inner">
<input type="text" name="subject" placeholder="Subject">
</div>
</div>
<div class="col-12 mb-40">
<div class="form-inner">
<textarea name="message" placeholder="Your message" required></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>
</div>
<?php
$conn->close();
?>
<!-- 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="service.html">Web Development</a></li>
<li><a href="service.html">Mobile Development</a></li>
<li><a href="service.html">Cloud Services</a></li>
<li><a href="service.html">Network Connectivity</a></li>
<li><a href="service.html">Data analytics</a></li>
<li><a href="service.html">Software Development</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>