-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
1463 lines (1416 loc) · 178 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description" content="">
<meta name="author" content="">
<link rel="shortcut icon" href="img/favicon.ico" />
<title>RibaFS - Awesome Web Programming</title>
<!-- Custom fonts for this theme -->
<link href="vendor/fontawesome-free/css/all.min.css" rel="stylesheet" type="text/css">
<link href="https://fonts.googleapis.com/css?family=Montserrat:400,700" rel="stylesheet" type="text/css">
<link href="https://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic" rel="stylesheet" type="text/css">
<!-- Theme CSS -->
<link href="css/freelancer.min.css" rel="stylesheet">
</head>
<body id="page-top">
<!-- Navigation -->
<nav class="navbar navbar-expand-lg bg-secondary" id="mainNav">
<div class="container">
<a class="navbar-brand js-scroll-trigger" href="#page-top">RibaFS - Awesome Web Programming</a>
<button class="navbar-toggler navbar-toggler-right text-uppercase font-weight-bold bg-primary text-white rounded" type="button" data-toggle="collapse" data-target="#navbarResponsive" aria-controls="navbarResponsive" aria-expanded="false" aria-label="Toggle navigation">
Menu
<i class="fas fa-bars"></i>
</button>
<div class="collapse navbar-collapse" id="navbarResponsive">
<ul class="navbar-nav ml-auto">
<li class="nav-item mx-0 mx-lg-1">
<a class="nav-link py-3 px-0 px-lg-3 rounded js-scroll-trigger" href="https://github.com/ribafs?tab=repositories">Repositórios</a>
</li>
<li class="nav-item mx-0 mx-lg-1">
<a class="nav-link py-3 px-0 px-lg-3 rounded js-scroll-trigger" href="https://ribafs.org/portal/curriculo/curriculo.html">Sobre Min</a>
</li>
<li class="nav-item mx-0 mx-lg-1">
<a class="nav-link py-3 px-0 px-lg-3 rounded js-scroll-trigger" href="https://ribafs.org/portal/curriculo/contato.html">Contato</a>
</li>
</ul>
</div>
</div>
</nav>
<!-- Masthead -->
<header class="bg-primary text-white text-center">
<div class="container d-flex align-items-center flex-column">
<!-- Masthead Heading -->
<h1 class="masthead-heading text-uppercase">References - Links</h1>
</div>
</header>
<!-- Contact Section -->
<section>
<br>
<div class="container">
<div align="center"><b>Tecle CTRL+F para procurar algo mais rapidamente</b></div>
<div class="row">
<div class="col-md-5">
<h3>All Awesomes</h3>
Muitas listas awesome de programação.<br>
<a href="https://github.com/ribafs/all-awesomes" target="_blank">All Awesomes</a>
<br><br>
<h3>Tutoriais Diversos</h3>
<b class="masthead-heading mb-0"><a href="#tutoriais">Tutoriais Diversos</a></b><br>
<b class="masthead-heading mb-0"><a href="#Snippets">Snippets</a></b><br>
<b class="masthead-heading mb-0"><a href="#Ferramentas">Ferramentas</a></b><br>
<b class="masthead-heading mb-0"><a href="#Diversos">Diversos</a></b><br>
<b class="masthead-heading mb-0"><a href="#Bootstrap">Bootstrap</a></b><br>
<b class="masthead-heading mb-0"><a href="#Lojas">Lojas Virtuais</a></b><br>
<b class="masthead-heading mb-0"><a href="#Freelancers">Freelancers sites</a></b><br>
<b class="masthead-heading mb-0"><a href="#Engines">Engines Mobile</a></b><br>
<b class="masthead-heading mb-0"><a href="#Livros">Livros Free</a></b><br>
<b class="masthead-heading mb-0"><a href="#Cursos">Cursos Online Gratuitos</a></b><br>
<b class="masthead-heading mb-0"><a href="#CakePHP">CakePHP</a></b><br>
<b class="masthead-heading mb-0"><a href="#PHP">PHP</a></b> <br>
<b class="masthead-heading mb-0"><a href="#PHPOO">PHPOO e MVC</a></b><br>
<b class="masthead-heading mb-0"><a href="#Joomla">Joomla</a></b><br>
<b class="masthead-heading mb-0"><a href="#Universidades">Universidades Virtuais</a></b><br>
<!-- links -->
<br><br>
<p style="margin-bottom: 0cm; line-height: 100%; page-break-before: always;" align="left"><b><span id="tutoriais"><h3>Tutoriais Diversos</h3></span></b></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://www.php.net/manual/pt_BR/tutorial.php">https://www.php.net/manual/pt_BR/tutorial.php</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://www.w3schools.com/php/">https://www.w3schools.com/php/</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://www.w3schools.com/php7/">https://www.w3schools.com/php7/</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://www.devmedia.com.br/php-tutorial/32540">https://www.devmedia.com.br/php-tutorial/32540</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://www.tutorialspoint.com/php/">https://www.tutorialspoint.com/php/</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://www.tutorialrepublic.com/php-tutorial/">https://www.tutorialrepublic.com/php-tutorial/</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://www.learn-php.org/">https://www.learn-php.org/</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://www.guru99.com/php-tutorials.html">https://www.guru99.com/php-tutorials.html</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://www.javatpoint.com/php-tutorial">https://www.javatpoint.com/php-tutorial</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="http://www.tizag.com/phpT/">http://www.tizag.com/phpT/</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://www.geeksforgeeks.org/php/">https://www.geeksforgeeks.org/php/</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://stackify.com/learn-php-tutorials/">https://stackify.com/learn-php-tutorials/</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="http://br.phptherightway.com/">http://br.phptherightway.com/</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://www.codeofaninja.com/php-programming-tutorials">https://www.codeofaninja.com/php-programming-tutorials</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"> </p>
<p style="margin-bottom: 0cm; line-height: 100%;"> </p>
<br><br>
<p style="margin-bottom: 0cm; line-height: 100%;"><span id="Snippets"><b><h3>Snippets</h3></b></span></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://snipplr.com/">https://snipplr.com/</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="http://www.jonasjohn.de/snippets/all.htm">http://www.jonasjohn.de/snippets/all.htm</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://github.com/JBZoo/Utils">https://github.com/JBZoo/Utils</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://www.hotscripts.com/category/scripts/php/">https://www.hotscripts.com/category/scripts/php/</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://www.planet-source-code.com/vb/default.asp?lngWId=8">https://www.planet-source-code.com/vb/default.asp?lngWId=8</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://www.codigofonte.net/scripts/php/">https://www.codigofonte.net/scripts/php/</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://vegibit.com/how-to-quickly-test-php-snippets/">https://vegibit.com/how-to-quickly-test-php-snippets/</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://github.com/topics/snippets-collection">https://github.com/topics/snippets-collection</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://devzone.zend.com/6/php-101-php-for-the-absolute-beginner/">https://devzone.zend.com/6/php-101-php-for-the-absolute-beginner/</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"> </p>
<p style="margin-bottom: 0cm; line-height: 100%;"> </p>
<br><br>
<p style="margin-bottom: 0cm; line-height: 100%;"><span id="Ferramentas"><b><h3>Ferramentas</h3></b></span></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><b>Ferramentas (muitas) para desenvolvedores</b></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://flaviocopes.com/tags/devtools/">https://flaviocopes.com/tags/devtools/</a></p><br>
<p style="margin-bottom: 0cm; line-height: 100%;"> </p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://blog.guilhermebranco.com.br/quanto-cobrar/?fbclid=IwAR2v8Jhs6q_CbUjeILvYVOurP8OTKnts8zpSHyd1lgNi29ygCKSYFcOTjn8">Quanto cobrar</a></p><br>
<p style="margin-bottom: 0cm; line-height: 100%;"> </p>
<p style="margin-bottom: 0cm; line-height: 100%;"><b>Testador de RegEx</b> - Online regex tester and debugger</p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://regex101.com/">https://regex101.com/</a></p><br>
<p style="margin-bottom: 0cm; line-height: 100%;"> </p>
<p style="margin-bottom: 0cm; line-height: 100%;"><b>Minify - JavaScript and CSS minifier</b></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://www.minifier.org/">https://www.minifier.org/</a></p><br>
<p style="margin-bottom: 0cm; line-height: 100%;"> </p>
<p style="margin-bottom: 0cm; line-height: 100%;"><b>PHP Pretty Diff - The difference tool</b></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="http://prettydiff.com/">http://prettydiff.com/</a></p><br>
<p style="margin-bottom: 0cm; line-height: 100%;"> </p>
<p style="margin-bottom: 0cm; line-height: 100%;"><b>Free robots.txt tester online tool - Check Now</b></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://www.websiteplanet.com/pt-br/webtools/robots-txt/">https://www.websiteplanet.com/pt-br/webtools/robots-txt/</a></p><br>
<p style="margin-bottom: 0cm; line-height: 100%;"> </p>
<p style="margin-bottom: 0cm; line-height: 100%;"><b>Snippets para VSCode, Sublime e Atom online</b></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://snippet-generator.app/">https://snippet-generator.app/</a></p><br>
<p style="margin-bottom: 0cm; line-height: 100%;"> </p>
<p style="margin-bottom: 0cm; line-height: 100%;"><b>Sites invadidos | Google Developers</b></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://developers.google.com/webmasters/hacked/?hl=pt-br">https://developers.google.com/webmasters/hacked/?hl=pt-br</a></p><br>
<p style="margin-bottom: 0cm; line-height: 100%;"> </p>
<p style="margin-bottom: 0cm; line-height: 100%;"> </p>
<p style="margin-bottom: 0cm; line-height: 100%; page-break-before: always;"><b>1001 Free Fonts - Download 37375 Fonts</b></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://www.1001freefonts.com/">https://www.1001freefonts.com/</a></p><br>
<p style="margin-bottom: 0cm; line-height: 100%;"> </p>
<p style="margin-bottom: 0cm; line-height: 100%;"><b>Imagens gratis - Pixabay</b></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://pixabay.com/pt/">https://pixabay.com/pt/</a></p><br>
<p style="margin-bottom: 0cm; line-height: 100%;"> </p>
<p style="margin-bottom: 0cm; line-height: 100%;"><b>Download Music Loops by Genre and Mood!</b></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://www.playonloop.com/download-music-loops/">https://www.playonloop.com/download-music-loops/</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"> </p><br>
<p style="margin-bottom: 0cm; line-height: 100%;"><b>Bancos de efeitos sonoros | White Noise</b></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://sonidoblanco.wordpress.com/2009/05/06/bancos-de-efeitos-sonoros/">https://sonidoblanco.wordpress.com/2009/05/06/bancos-de-efeitos-sonoros/</a></p><br>
<p style="margin-bottom: 0cm; line-height: 100%;"> </p>
<p style="margin-bottom: 0cm; line-height: 100%;"><b>Ace Editor Online: HTML, CSS, JavaSCript e muito mais</b></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://ace.c9.io/build/kitchen-sink.html">https://ace.c9.io/build/kitchen-sink.html</a></p><br>
<p style="margin-bottom: 0cm; line-height: 100%;"> </p>
<p style="margin-bottom: 0cm; line-height: 100%;"><b>Color Name & Hue | Colblindor</b></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="http://www.color-blindness.com/color-name-hue/">http://www.color-blindness.com/color-name-hue/</a></p><br>
<p style="margin-bottom: 0cm; line-height: 100%;"> </p>
<p style="margin-bottom: 0cm; line-height: 100%;"><b>Latitude and Longitude Finder on Map Get Coordinates</b></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://www.latlong.net/">https://www.latlong.net/</a></p><br>
<p style="margin-bottom: 0cm; line-height: 100%;"> </p>
<p style="margin-bottom: 0cm; line-height: 100%;"><b>Iconfinder - 2,025,000+ free and premium icons</b></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://www.iconfinder.com/">https://www.iconfinder.com/</a></p><br>
<p style="margin-bottom: 0cm; line-height: 100%;"> </p>
<p style="margin-bottom: 0cm; line-height: 100%;"><b>Calculo exato</b></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><b><a href="http://www.calculoexato.com.br/adel/default.asp">http://www.calculoexato.com.br/adel/default.asp</a> </b></p><br>
<p style="margin-bottom: 0cm; line-height: 100%;"> </p>
<p style="margin-bottom: 0cm; line-height: 100%;"><b>HTML5test - How well does your browser support HTML5?</b></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://html5test.com/">https://html5test.com/</a></p><br>
<p style="margin-bottom: 0cm; line-height: 100%;"> </p>
<p style="margin-bottom: 0cm; line-height: 100%;"><b>Can I use... Support tables for HTML5, CSS3, etc</b></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://caniuse.com/">https://caniuse.com/</a></p><br>
<p style="margin-bottom: 0cm; line-height: 100%;"> </p>
<p style="margin-bottom: 0cm; line-height: 100%;"><b>Construtor de layout online</b> - LayoutIt! - Interface Builder for CSS Grid and Bootstrap</p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://www.layoutit.com/">https://www.layoutit.com/</a></p><br>
<p style="margin-bottom: 0cm; line-height: 100%;"> </p>
<p style="margin-bottom: 0cm; line-height: 100%;"><b>Versões anteriores do Firefox</b></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://ftp.mozilla.org/pub/firefox/releases/">https://ftp.mozilla.org/pub/firefox/releases/</a></p><br>
<p style="margin-bottom: 0cm; line-height: 100%;"> </p>
<p style="margin-bottom: 0cm; line-height: 100%;"><b>Lorem Ipsum - All the facts - Lipsum generator (pt-br)</b></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://br.lipsum.com/">https://br.lipsum.com/</a></p><br>
<p style="margin-bottom: 0cm; line-height: 100%;"> </p>
<p style="margin-bottom: 0cm; line-height: 100%;"><b>IDE Online para PHP (mais de 200 versões do PHP, desde a 4.3)</b></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://3v4l.org/">https://3v4l.org/</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="http://phpfiddle.org/">http://phpfiddle.org/</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://repl.it/languages/php_cli">https://repl.it/languages/php_cli</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://paiza.io/en/projects/new">https://paiza.io/en/projects/new</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://www.jdoodle.com/php-online-editor/">https://www.jdoodle.com/php-online-editor/</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"> </p><br>
<p style="margin-bottom: 0cm; line-height: 100%;"><b>Hospedagem Compartilhada</b></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="http://spaceprogrammer.com/host/o-que-uma-boa-hospedagem-deve-oferecer/">http://spaceprogrammer.com/host/o-que-uma-boa-hospedagem-deve-oferecer/</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://www.hostgator.com.br/">https://www.hostgator.com.br/</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://br.godaddy.com/">https://br.godaddy.com/</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://www.hostmonster.com/">https://www.hostmonster.com/</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"> </p><br>
<p style="margin-bottom: 0cm; line-height: 100%;"><b>Hospedagens tipo VPS</b></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://www.digitalocean.com/">https://www.digitalocean.com/</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://www.vultr.com/">https://www.vultr.com/</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"> </p><br>
<p style="margin-bottom: 0cm; line-height: 100%;"><b>Hospedagem Cloud Free</b></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://codenvy.com/">https://codenvy.com/</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://www.heroku.com/">https://www.heroku.com/</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"> </p><br>
<p style="margin-bottom: 0cm; line-height: 100%;"><b>Hospedagem Clud Comerciais</b></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://cloud.google.com/">https://cloud.google.com/</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://aws.amazon.com/pt/">https://aws.amazon.com/pt/</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://docs.aws.amazon.com/index.html?nc2=h_ql_doc">https://docs.aws.amazon.com/index.html?nc2=h_ql_doc</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://azure.microsoft.com/en-us/">https://azure.microsoft.com/en-us/</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://docs.microsoft.com/en-us/azure/">https://docs.microsoft.com/en-us/azure/</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://www.fortrabbit.com/">https://www.fortrabbit.com/</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://help.fortrabbit.com/">https://help.fortrabbit.com/</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://www.cloudways.com/br/">https://www.cloudways.com/br/</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"> </p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://regex101.com/">Online regex tester and debugger: PHP, PCRE, Python, Golang and JavaScript</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"></p>
<br>
p><br>
<p style="margin-bottom: 0cm; line-height: 100%;"><b>Online Javascript Editor e teste</b></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://js.do/">https://js.do/</a></p><br>
<p style="margin-bottom: 0cm; line-height: 100%;"> </p>
<p style="margin-bottom: 0cm; line-height: 100%;"><b>Testador de desempenho de sites</b> - WebPageTest - Website Performance and Optimization Test</p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://www.webpagetest.org/">https://www.webpagetest.org/</a></p><br>
<p style="margin-bottom: 0cm; line-height: 100%;"> </p>
<p style="margin-bottom: 0cm; line-height: 100%;"><b>GTmetrix | Website Speed and Performance Optimization</b></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://gtmetrix.com/">https://gtmetrix.com/</a></p><br>
<p style="margin-bottom: 0cm; line-height: 100%;"> </p>
<p style="margin-bottom: 0cm; line-height: 100%;"><b>Scripts pagos</b></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://codecanyon.net/">https://codecanyon.net/</a></p><br>
<p style="margin-bottom: 0cm; line-height: 100%;"> </p>
<p style="margin-bottom: 0cm; line-height: 100%;"><b>PChart</b></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="http://pchart.sourceforge.net/">http://pchart.sourceforge.net/</a></p><br>
<p style="margin-bottom: 0cm; line-height: 100%;"> </p>
<p style="margin-bottom: 0cm; line-height: 100%;"><b>Gráfico de Gantt</b></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="http://bastianallgeier.com/gantti/">http://bastianallgeier.com/gantti/</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"> </p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="http://nielse63.github.io/php-image-cache/">http://nielse63.github.io/php-image-cache/</a></p><br>
<p style="margin-bottom: 0cm; line-height: 100%;"> </p>
<p style="margin-bottom: 0cm; line-height: 100%;"><b>Manipulação de imagens</b></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="http://wideimage.sourceforge.net/">http://wideimage.sourceforge.net/</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="http://imagine.readthedocs.org/en/latest/">http://imagine.readthedocs.org/en/latest/</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="http://phpimageworkshop.com/">http://phpimageworkshop.com/</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="http://phpthumb.sourceforge.net/">http://phpthumb.sourceforge.net/</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"> </p>
<p style="margin-bottom: 0cm; line-height: 100%;"> </p><br>
<p style="margin-bottom: 0cm; line-height: 100%; page-break-before: always;"><b>Gerenciamento de erros</b></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://github.com/filp/whoops">https://github.com/filp/whoops</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="http://phperror.net/">http://phperror.net/</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"> </p><br>
<p style="margin-bottom: 0cm; line-height: 100%;"><b>Esta classe utiliza o User-agent para detectar se a sua página está rodando em um computador ou em um dispositivo móvel.</b></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="http://mobiledetect.net/">http://mobiledetect.net/</a></p><br>
<p style="margin-bottom: 0cm; line-height: 100%;"> </p><br>
<p style="margin-bottom: 0cm; line-height: 100%;"><b>Utilize essa classe para identificar o país de origem do acesso a partir do IP.</b></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="http://lpt.mirrors.phpclasses.org/package/2363-PHP-Lookup-the-country-of-a-given-IP-address.html">http://lpt.mirrors.phpclasses.org/package/2363-PHP-Lookup-the-country-of-a-given-IP-address.html</a></p><br>
<p style="margin-bottom: 0cm; line-height: 100%;"> </p><br>
<p style="margin-bottom: 0cm; line-height: 100%;"><b>Pacote Office (ler e escrever)</b></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="http://phpword.codeplex.com/">http://phpword.codeplex.com/</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://phpexcel.codeplex.com/">https://phpexcel.codeplex.com/</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://phppowerpoint.codeplex.com/">https://phppowerpoint.codeplex.com/</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"> </p><br>
<p style="margin-bottom: 0cm; line-height: 100%;"><b>Biblioteca para autenticação em diversos provedores de serviço na web.</b></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="http://opauth.org/">http://opauth.org/</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"> </p><br>
<p style="margin-bottom: 0cm; line-height: 100%;"><b>Ferramenta excelente para envio de e-mail no PHP.</b></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="http://swiftmailer.org/">http://swiftmailer.org/</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"> </p><br>
<p style="margin-bottom: 0cm; line-height: 100%;"><b>Ferramenta para filtrar HTML</b></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="http://htmlpurifier.org/">http://htmlpurifier.org/</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"> </p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="http://www.fpdf.org/">http://www.fpdf.org/</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://github.com/dompdf/dompdf">https://github.com/dompdf/dompdf</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"> </p>
<p style="margin-bottom: 0cm; line-height: 100%;"> </p>
<br><br>
<p style="margin-bottom: 0cm; line-height: 100%;"><span id="Diversos"><b><h3>Diversos</h3></b></span></p>
<p style="margin-bottom: 0cm; line-height: 100%;"> </p>
<p style="margin-bottom: 0cm; line-height: 100%;"><b>Lista com links de projetos open-source para varios níveis</b></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://github.com/camilatigre/listamaravilhosaopensource">https://github.com/camilatigre/listamaravilhosaopensource</a></p><br>
<p style="margin-bottom: 0cm; line-height: 100%;"> </p>
<p style="margin-bottom: 0cm; line-height: 100%;"><b>PHP: Do Jeito Certo</b></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="http://br.phptherightway.com/">http://br.phptherightway.com/</a></p><br>
<p style="margin-bottom: 0cm; line-height: 100%;"> </p>
<p style="margin-bottom: 0cm; line-height: 100%;"><b>Learn PHP - Free Interactive PHP Tutorial</b></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="http://www.learn-php.org/">http://www.learn-php.org/</a></p><br>
<p style="margin-bottom: 0cm; line-height: 100%;"> </p>
<p style="margin-bottom: 0cm; line-height: 100%;"><b>jQuery Core</b> – All Versions | jQuery CDN</p><br>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://code.jquery.com/jquery/">https://code.jquery.com/jquery/</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"> </p><br>
<p style="margin-bottom: 0cm; line-height: 100%;"><b>JS: A forma certa</b></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://jstherightway.org/pt-br/">https://jstherightway.org/pt-br/</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"> </p><br>
<p style="margin-bottom: 0cm; line-height: 100%;"><b>Primeiros passos – Google Cloud Platform</b></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://console.cloud.google.com/getting-started?walkthrough_tutorial_id=console_tour_nav">https://console.cloud.google.com/getting-started?walkthrough_tutorial_id=console_tour_nav</a></p><br>
<p style="margin-bottom: 0cm; line-height: 100%;"> </p>
<p style="margin-bottom: 0cm; line-height: 100%;"><b>HTML Color Picker</b></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://www.w3schools.com/colors/colors_picker.asp">https://www.w3schools.com/colors/colors_picker.asp</a></p><br>
<p style="margin-bottom: 0cm; line-height: 100%;"><b>PHP Best Practices</b>: a short, practical guide for common and confusing PHP tasks</p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://phpbestpractices.org/">https://phpbestpractices.org/</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"> </p><br>
<p style="margin-bottom: 0cm; line-height: 100%;"><b>PHP: MySQL Database Tutorial</b></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://www.w3schools.com/php/php_mysql_intro.asp">https://www.w3schools.com/php/php_mysql_intro.asp</a></p><br>
<p style="margin-bottom: 0cm; line-height: 100%;"> </p>
<p style="margin-bottom: 0cm; line-height: 100%;"><b>PHP Tutorial - An Ultimate Guide for Beginners</b></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://www.tutorialrepublic.com/php-tutorial/">https://www.tutorialrepublic.com/php-tutorial/</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"> </p><br>
<p style="margin-bottom: 0cm; line-height: 100%;"><b>Tutoriais diversos</b></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://www.tutorialrepublic.com/">https://www.tutorialrepublic.com</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"> </p><br>
<p style="margin-bottom: 0cm; line-height: 100%;"><b>Métodos de requisição HTTP</b></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://developer.mozilla.org/pt-BR/docs/Web/HTTP/Methods">https://developer.mozilla.org/pt-BR/docs/Web/HTTP/Methods</a></p><br>
<p style="margin-bottom: 0cm; line-height: 100%;"> </p>
<p style="margin-bottom: 0cm; line-height: 100%;"><b>Curso de PHP Completo, inclusive POO</b></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://www.youtube.com/playlist?list=PLhUp81I0jET71gMTWy50cpAYHrWnVnYlA">https://www.youtube.com/playlist?list=PLhUp81I0jET71gMTWy50cpAYHrWnVnYlA</a></p><br>
<p style="margin-bottom: 0cm; line-height: 100%;"> </p>
<p style="margin-bottom: 0cm; line-height: 100%;"><b>Hospedagem grátis - 000Webhosts</b></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://www.000webhost.com/">https://www.000webhost.com</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"> </p><br>
<p style="margin-bottom: 0cm; line-height: 100%;"><b>Google URL Shortener</b></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://goo.gl/">https://goo.gl/</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"> </p><br>
<p style="margin-bottom: 0cm; line-height: 100%;"><b>LongURL</b> | The Universal Way to Expand Shortened URLs</p>
<p style="margin-bottom: 0cm; line-height: 100%;"><b><a href="http://www.longurl.org/">http://www.longurl.org/</a> </b></p>
<p style="margin-bottom: 0cm; line-height: 100%;"> </p><br>
<p style="margin-bottom: 0cm; line-height: 100%;"><b>76,700 ícones grátis (SVG, PNG)</b></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://icons8.com.br/">https://icons8.com.br/</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"> </p>
<p style="margin-bottom: 0cm; line-height: 100%;"><b>htaccess Tester - madewithlove</b></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="http://htaccess.mwl.be/">http://htaccess.mwl.be/</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"> </p><br>
<p style="margin-bottom: 0cm; line-height: 100%;"><b>.htaccess Generator</b> :: Webmaster Toolkit</p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="http://www.webmaster-toolkit.com/htaccess-generator.shtml">http://www.webmaster-toolkit.com/htaccess-generator.shtml</a></p><br>
<p style="margin-bottom: 0cm; line-height: 100%;"> </p>
<p style="margin-bottom: 0cm; line-height: 100%;"><b>PDO tutorial - Treating PHP Delusions</b></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://phpdelusions.net/pdo">https://phpdelusions.net/pdo</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"> </p><br>
<p style="margin-bottom: 0cm; line-height: 100%;"><b>Wrapper para PDO</b></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://github.com/FaaPz/PDO">https://github.com/FaaPz/PDO</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"> </p><br>
<p style="margin-bottom: 0cm; line-height: 100%;"><b>Repositório de classes</b></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://www.phpclasses.org/">https://www.phpclasses.org/</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"> </p><br>
<p style="margin-bottom: 0cm; line-height: 100%;"><b>Lista de funções nativas do PHP:</b></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://www.php.net/manual/en/indexes.functions.php">https://www.php.net/manual/en/indexes.functions.php</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"> </p><br>
<p style="margin-bottom: 0cm; line-height: 100%;"> </p><br>
<p style="margin-bottom: 0cm; line-height: 100%;"> </p>
<p style="margin-bottom: 0cm; line-height: 100%; page-break-before: always;"><b>Contribuindo em projetos open source com o github</b></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://tableless.com.br/contribuindo-em-projetos-open-source-com-o-github/">https://tableless.com.br/contribuindo-em-projetos-open-source-com-o-github/</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"> </p><br>
<p style="margin-bottom: 0cm; line-height: 100%;"><b>Melhor lista de discussão sobre informática em geral - Stack Overflow</b></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://stackoverflow.com/">https://stackoverflow.com/</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"> </p><br>
<p style="margin-bottom: 0cm; line-height: 100%;"><b>Em português</b></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://pt.stackoverflow.com/questions/tagged/php">https://pt.stackoverflow.com/questions/tagged/php</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://pt.stackoverflow.com/questions/tagged/html">https://pt.stackoverflow.com/questions/tagged/html</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://pt.stackoverflow.com/questions/tagged/css">https://pt.stackoverflow.com/questions/tagged/css</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://pt.stackoverflow.com/questions/tagged/bootstrap">https://pt.stackoverflow.com/questions/tagged/bootstrap</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://pt.stackoverflow.com/questions/tagged/jquery">https://pt.stackoverflow.com/questions/tagged/jquery</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://pt.stackoverflow.com/questions/tagged/mysql">https://pt.stackoverflow.com/questions/tagged/mysql</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"> </p><br>
<p style="margin-bottom: 0cm; line-height: 100%;"><b>Em inglês</b></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://stackoverflow.com/questions">https://stackoverflow.com/questions</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://stackoverflow.com/questions/tagged/php">https://stackoverflow.com/questions/tagged/php</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://stackoverflow.com/questions/tagged/php+mysql">https://stackoverflow.com/questions/tagged/php+mysql</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://stackoverflow.com/questions/tagged/php+html">https://stackoverflow.com/questions/tagged/php+html</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://stackoverflow.com/questions/tagged/php+javascript">https://stackoverflow.com/questions/tagged/php+javascript</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://stackoverflow.com/questions/tagged/php+jquery">https://stackoverflow.com/questions/tagged/php+jquery</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://stackoverflow.com/questions/tagged/php+ajax">https://stackoverflow.com/questions/tagged/php+ajax</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"> </p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://github.com/rinvex/countries">https://github.com/rinvex/countries</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://github.com/markrogoyski/math-php">https://github.com/markrogoyski/math-php</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://github.com/SimpleRegex/SRL-PHP">https://github.com/SimpleRegex/SRL-PHP</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://github.com/thephpleague/oauth2-server">https://github.com/thephpleague/oauth2-server</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://github.com/sesser/Instaphp">https://github.com/sesser/Instaphp</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://github.com/shadowhand/latitude">https://github.com/shadowhand/latitude</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="http://www.ejeliot.com/pages/php-captcha">http://www.ejeliot.com/pages/php-captcha</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://github.com/fzaninotto/Faker">https://github.com/fzaninotto/Faker</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://github.com/briannesbitt/Carbon">https://github.com/briannesbitt/Carbon</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://github.com/devster/ubench">https://github.com/devster/ubench</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://github.com/Respect/Validation">https://github.com/Respect/Validation</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://github.com/ircmaxell/filterus">https://github.com/ircmaxell/filterus</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://github.com/KnpLabs/Gaufrette">https://github.com/KnpLabs/Gaufrette</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://github.com/adrianmacneil/omnipay">https://github.com/adrianmacneil/omnipay</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://github.com/codeguy/Upload">https://github.com/codeguy/Upload</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://github.com/mjaschen/phpgeo">https://github.com/mjaschen/phpgeo</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://github.com/MrRio/shellwrap">https://github.com/MrRio/shellwrap</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://github.com/spatie/array-functions">https://github.com/spatie/array-functions</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://github.com/markrogoyski/math-php">https://github.com/markrogoyski/math-php</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://github.com/crisu83/php-conversion">https://github.com/crisu83/php-conversion</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://programathor.com.br/blog/recursos-gratuitos-para-programadores/">22 recursos gratuitos para programadores (iniciantes) - Blog ProgramaThor</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://www.youtube.com/user/desenvolvendophp/playlists">desenvolvendo PHP - YouTube - YouTube</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://www.codeofaninja.com/">The Code of a Ninja - Web Programming Blog by Mike Dalisay</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://websiteforstudents.com/">Website for Students – A Place for IT Students....</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://www.pencil2d.org/">Pencil2D Animation - Open source animation software</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="http://www.calendario.com.br/">Calendário com Feriados Municipais, Estaduais e Nacionais em 2019 e 2020</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="http://www.feriados.com.br/feriados-fortaleza-ce.php">Feriados de 2019 em FORTALEZA - CE</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://www.albicod.com/scripts/placaCarro/">Consulta de Placa de Carro & Moto</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="http://www.worldometers.info/br">Dados Mundiais</a><br /> <br><b>BO Ceará</b><br /> <a href="http://www.delegaciaeletronica.ce.gov.br/beo/">http://www.delegaciaeletronica.ce.gov.br/beo/</a></p><br>
<dd style="margin-left: 0cm;"><b>Consultar Restituição do IRPF</b></dd>
<dd style="margin-left: 0cm;"><a href="http://servicos.receita.fazenda.gov.br/Servicos/consrest/Atual.app/paginas/mobile/restituicaoMobi.asp">http://servicos.receita.fazenda.gov.br/Servicos/consrest/Atual.app/paginas/mobile/restituicaoMobi.asp</a></dd>
<dd style="margin-left: 0cm;"><b>Lista das melhores bibliotecas de PHP</b></dd>
<br>
<p style="margin-bottom: 0cm; line-height: 100%;"> </p>
<p style="margin-bottom: 0cm; line-height: 100%;"><b>Busca no Currículo Lates</b></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="http://buscacv.cnpq.br/buscacv/">http://buscacv.cnpq.br/buscacv/</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"> </p><br>
<p style="margin-bottom: 0cm; line-height: 100%;"><b>Convertar para PDF</b></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="http://www.pdfonline.com/convert-pdf/">http://www.pdfonline.com/convert-pdf/</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"> </p><br>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://www.dicio.com.br/aurelio-2/">Aurélio - Dicio, Dicionário Online de Português</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"> </p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://onextrapixel.com/best-visual-studio-code-extensions/">12 Best Visual Studio Code Extensions for Web Developers</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://www.minestore.com.br/">Crie uma loja virtual completa e sem mensalidade - minestore</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://medium.com/issuehunt/50-most-popular-php-projects-on-github-c8cf6a242eb9">50 Most Popular PHP Projects on GitHub - IssueHunt - Medium</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://stackedit.io/app">Markdown - StackEdit</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://pandao.github.io/editor.md/en.html">Editor.md - Open source online Markdown editor.</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="http://sandbox.onlinephpfunctions.com/">PHP Sandbox, test PHP online, PHP tester</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="http://nhn.github.io/tui.editor/api/latest/tutorial-example02-editor-basic.html">Editor Markdown</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://dillinger.io/">Online Markdown Editor - Dillinger, the Last Markdown Editor ever.</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://www.w3schools.com/colors/colors_picker.asp">HTML Color Picker</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://www.whatsmyip.org/html-characters/">HTML Entities & Special Characters / WhatsMyIP.org</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://www.superprof.com.br/">Aulas particulares e Professores para aulas particulares no Brasil</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://repl.it/languages/">Repl.it - Select a Language</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://www.digitalocean.com/community/markdown">Markdown Preview | DigitalOcean</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://www.fontsquirrel.com/tools/webfont-generator">Create Your Own @font-face Kits » Font Squirrel</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://laragon.org/download/index.html">Download | Laragon - portable, isolated, fast & powerful universal development environment for PHP, Node.js, Python, Java, Go, Ruby.</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://www.webtoolkitonline.com/">Free web online tools</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://fonts.google.com/">Google Fonts</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://hostgator.com.br/formularios/form-cancelamento-conta.php">Formulário de Cancelamento de Conta - HostGator</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://goo.gl/">Google URL Shortener</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="http://upgrade-bootstrap.bootply.com/">Bootstrap 4 Upgrade - Convert Bootstrap 3 to Bootstrap 4</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://www.phpdoc.org/">phpDocumentor</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://dashboard.tawk.to/#/dashboard">ChatJoomla tawk.to | Painel de controle</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://icons8.com.br/">76,700 ícones grátis (SVG, PNG)</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://github.com/adam-p/markdown-here/wiki/Markdown-Cheatsheet">Markdown Cheatsheet · adam-p/markdown-here Wiki</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://www.webnode.pt/">Criar site gratis | Descubra como criar um site - Webnode</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://jsonlint.com/">JSONLint - The JSON Validator</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="http://htaccess.mwl.be/">htaccess Tester - madewithlove</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://code.jquery.com/jquery/">jQuery Core – All Versions | jQuery CDN</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://www.canva.com/">All Your Designs – Canva</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://trello.com/">Quadros | Trello</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://intensedebate.com/userDash">IntenseDebate - User Dashboard</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://www.toptal.com/">Toptal - Hire Freelance Talent from the Top 3%</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://www.minifier.org/">Minify - JavaScript and CSS minifier</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://xdebug.org/wizard.php">Xdebug: Support; Tailored Installation Instructions</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://minify-html.com/">HTML Minifier</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="http://prettydiff.com/">PHP Pretty Diff - The difference tool</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://www.cdnplanet.com/tools/cdnfinder/">CDN Finder tool - CDN Planet</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://www.melhorhospedagemdesites.com/dicas-e-ferramentas/erro-http-o-que-e-como-resolver/">Erro HTTP: o que é e como resolver</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://www.websiteplanet.com/pt-br/webtools/robots-txt/">Free robots.txt tester online tool - Check Now</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="http://winginx.com/en/htaccess">htaccess to nginx converter</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://www.upwork.com/">Upwork - Hire Freelancers & Get Freelance Jobs Online</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://gtmetrix.com/analyze.html">Analyzing url: http://ribafs.org/portal | GTmetrix</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://www.freelancermap.com/">Freelancer jobs & projects without fees| freelancermap</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://loadimpact.com/">Performance testing for DevOps | Load Impact</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://www.superprof.us/">SuperProf - Private tutoring, teaching and mentoring across the USA - Superprof</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://pawelgrzybek.com/snippet-generator/">snippet generator</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://etcher.io/">Etcher - Gravar imagem ISO em usb</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="http://www.ampps.com/pricing">AMPPS - WAMP, MAMP and LAMP Stack : AMPPS Pricing</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://developers.google.com/webmasters/hacked/?hl=pt-br">Sites invadidos | Google Developers</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://www.1001freefonts.com/">1001 Free Fonts - Download 37375 Fonts</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://en.wikipedia.org/wiki/List_of_Unicode_characters">List of Unicode characters - Wikipedia</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://www.shutterstock.com/home">Banco de Imagens, Fotos e Vetores livres de direitos — Shutterstock</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://pixabay.com/pt/">Imagens gratis - Pixabay</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://morguefile.com/">Morguefile free photographs for commercial use</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://www.dreamstime.com/free-photos">Free Stock Photos & Images - Royalty-Free & CC0 Public Domain Images by Dreamstime</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="http://www.freephotosbank.com/">Free Photos - Free Stock Images</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="http://www.unprofound.com/">unprofound.com : royalty free photography project - a public domain stock photo collaboration</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://cn.freeimages.com/">Free Images and Free Stock Photos - Over 300k - FreeImages.com</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://www.playonloop.com/download-music-loops/">Download Music Loops by Genre and Mood!</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="http://ferramentasinteligentes.com.br/free-play-music/">Banco de Audio | Free Play Music | Ferramentas de Marketing</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://br.123rf.com/">Banco de Imagens, Vídeos, Áudios, Logos e Planos de Assinaturas Royalty-Free</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://sonidoblanco.wordpress.com/2009/05/06/bancos-de-efeitos-sonoros/">Bancos de efeitos sonoros | White Noise</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://www.playonloop.com/download-music-loops/">Download Music Loops by Genre and Mood!</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="http://www.color-blindness.com/color-name-hue/">Color Name & Hue | Colblindor</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://gtmetrix.com/analyze.html">Analyzing url: http://ribafs.org/portal | GTmetrix</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://developers.google.com/speed/pagespeed/insights/">PageSpeed Insights</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://tools.pingdom.com/">Website speed test</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="http://www.webpagetest.org/">WebPagetest - Website Performance and Optimization Test</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://www.latlong.net/">Latitude and Longitude Finder on Map Get Coordinates</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://www.iconfinder.com/">Iconfinder - 2,025,000+ free and premium icons</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://startbootstrap.com/template-categories/all/">Bootstrap Themes Free</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="http://www.openstreetmap.org/#map=13/-3.7730/-38.5558">OpenStreetMap</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="http://ondras.zarovi.cz/sql/demo/?keyword=default">SQL Designer - default</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://www.elance.com/">Freelance professionals, experts, and consultants - Get work done on Elance</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="http://www.calculoexato.com.br/adel/default.asp">Calculo exato</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="http://www.correios.com.br/servicos/cep/cep_loc_log.cfm">Correios :: Busca CEP</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="http://www.webmaster-toolkit.com/htaccess-generator.shtml">.htaccess Generator :: Webmaster Toolkit</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="http://www.vagacolaborativa.com.br/home">Vaga Colaborativa - Maior site de empregos do Brasil</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://pixabay.com/pt/">Imagens grátis impressionantes · Pixabay</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="http://www.reverso.net/translationresults.aspx?lang=EN&direction=english-portuguese">Tradutor - Reverso | English - Portuguese</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://coverr.co/">Coverr - Vídeos</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://github.com/HugoPorto/socialmedia">SocialMedia</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="http://whoismining.com/">Who is mining? - Cryptocurrency mining checker</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="http://www.colourlovers.com/">Color Trends + Palettes :: COLOURlovers</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://www.facebook.com/fametreinamentos/">FAME Treinamentos - Página inicial</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://webmakerapp.com/app/">Web Maker</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://www.pexels.com/royalty-free-images/">Royalty free images · Pexels</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://docs.emmet.io/cheat-sheet/">Cheat Sheet</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://romannurik.github.io/AndroidAssetStudio/icons-launcher.html#foreground.type=image&foreground.space.trim=1&foreground.space.pad=0.25&foreColor=rgba(96%2C%20125%2C%20139%2C%200)&backColor=rgb(68%2C%20138%2C%20255)&crop=0&backgroundShape=square&effects=none&name=ic_launcher">Android Asset Studio - Launcher icon generator</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://app-privacy-policy-generator.firebaseapp.com/?fbclid=IwAR0y85rUWJx46OJD5wS-u9-3-p2084nCYO847g9XgMW-N8hdmidqf0IiImA">App Privacy Policy Generator</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://regex101.com/">Online regex tester and debugger: PHP, PCRE, Python, Golang and JavaScript</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://www.keycdn.com/blog/web-development-tools">100+ Awesome Web Development Tools and Resources - KeyCDN</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://jsfiddle.net/">JSFiddle</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://jsbin.com/?html,output">JS Bin - Collaborative JavaScript Debugging</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://flaviocopes.com/tags/devtools/">Devtools - Flavio Copes</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://www.draw.io/#G1FEO-GjqQ7TRx86DmMlDVO9lWC-KFInHS">Untitled Diagram.drawio - draw.io</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://snippet-generator.app/">snippet generator</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://www.webpagetest.org/">WebPageTest - Website Performance and Optimization Test</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://gtmetrix.com/">GTmetrix | Website Speed and Performance Optimization</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://www.minestore.com.br/">Crie uma loja virtual completa e sem mensalidade - minestore</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"> </p>
<p style="margin-bottom: 0cm; line-height: 100%;"><b>Busca CEP</b></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="http://www.correios.com.br/">http://www.correios.com.br/</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"> </p><br>
<p style="margin-bottom: 0cm; line-height: 100%;"><b>Baixar imagem de disco do Windows 10 (arquivo ISO)</b></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://www.microsoft.com/pt-br/software-download/windows10ISO">https://www.microsoft.com/pt-br/software-download/windows10ISO</a></p><br>
<p style="margin-bottom: 0cm; line-height: 100%;"> </p>
<p style="margin-bottom: 0cm; line-height: 100%;"><b>Site do Consumidor - reclamações</b></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://www.consumidor.gov.br/pages/principal/">https://www.consumidor.gov.br/pages/principal/</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"> </p><br>
<p style="margin-bottom: 0cm; line-height: 100%;"><b>Google Hangouts</b></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://hangouts.google.com/?hl=pt-BR">https://hangouts.google.com/?hl=pt-BR</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"> </p><br>
<p style="margin-bottom: 0cm; line-height: 100%;"><b>Editor gráfico online</b></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://www.autodraw.com/">https://www.autodraw.com/</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"> </p><br>
<p style="margin-bottom: 0cm; line-height: 100%;"><b>30 dicas e truques para melhorar as suas buscas no Google - Internet</b></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://canaltech.com.br/internet/dicas-e-truques-para-melhorar-as-suas-buscas-no-google/">https://canaltech.com.br/internet/dicas-e-truques-para-melhorar-as-suas-buscas-no-google/</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"> </p><br>
<p style="margin-bottom: 0cm; line-height: 100%;"><b>Acessar arquivos do Linux estando no Windows</b></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://www.diskinternals.com/thanks/linux_reader/">https://www.diskinternals.com/thanks/linux_reader/</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"> </p><br>
<p style="margin-bottom: 0cm; line-height: 100%;"><b>Akinato</b><b>r</b><b> - "Advinha" pensamento</b></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://pt.akinator.com/">https://pt.akinator.com/</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"> </p><br>
<p style="margin-bottom: 0cm; line-height: 100%;"><b>Médico Responde</b></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="http://medicoresponde.com.br/">http://medicoresponde.com.br/</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"> </p><br>
<p style="margin-bottom: 0cm; line-height: 100%;"><b>BO Online - Boletim Eletrônico de Ocorrência - Ceará</b></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="http://www.delegaciaeletronica.ce.gov.br/beo/index.jsp">http://www.delegaciaeletronica.ce.gov.br/beo/index.jsp</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"> </p><br>
<p style="margin-bottom: 0cm; line-height: 100%;"><b>Cálculos diversos: férias, rescisão, décimo terceiro, seguro desemprego, etc</b></p>
<p style="margin-bottom: 0cm; font-weight: normal; line-height: 100%;"><a href="http://www.calculador.com.br/">http://www.calculador.com.br/</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"> </p><br>
<p style="margin-bottom: 0cm; line-height: 100%;"><b>Receita Federal - Consulta Restituição IRPF</b></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="http://servicos.receita.fazenda.gov.br/Servicos/consrest/Atual.app/paginas/mobile/restituicaoMobi.asp">http://servicos.receita.fazenda.gov.br/Servicos/consrest/Atual.app/paginas/mobile/restituicaoMobi.asp</a></p><br>
<p style="margin-bottom: 0cm; line-height: 100%;"><b>Bulário</b></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="http://www4.anvisa.gov.br/BularioEletronico/">http://www4.anvisa.gov.br/BularioEletronico/</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"> </p><br>
<p style="margin-bottom: 0cm; line-height: 100%;"><b>Conversor de Texto para Audio - /mecdaisy</b></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="http://www.intervox.nce.ufrj.br/mecdaisy/">http://www.intervox.nce.ufrj.br/mecdaisy/</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"> </p><br>
<p style="margin-bottom: 0cm; line-height: 100%;"><b>Dicionário de Português Online</b></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://www.dicio.com.br/">https://www.dicio.com.br/</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"> </p><br>
<p style="margin-bottom: 0cm; line-height: 100%;"><b>Desenhar plantas de casa online</b></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://planner.mooble.com/br/projeto/Draft">https://planner.mooble.com/br/projeto/Draft</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://planner5d.com/pt/e/">https://planner5d.com/pt/e/</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://www.spacedesigner3d.com/pt">https://www.spacedesigner3d.com/pt</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://pt.floorplanner.com/">https://pt.floorplanner.com/</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"> </p><br>
<p style="margin-bottom: 0cm; line-height: 100%;"><b>Versões antigas de vários soft</b></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="http://www.oldapps.com/">http://www.oldapps.com/</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"> </p><br>
<p style="margin-bottom: 0cm; line-height: 100%;"><b>10 useful Free alternative to AutoCAD | autocad alternative</b></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="http://blog.dreamcss.com/design-tool/10-useful-free-alternative-to-autocad/">http://blog.dreamcss.com/design-tool/10-useful-free-alternative-to-autocad/</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"> </p><br>
<p style="margin-bottom: 0cm; line-height: 100%;"><b>Google Maps Percurso</b></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://www.google.com/maps/dir///@-3.7614043,-38.5532805,15z">https://www.google.com/maps/dir///@-3.7614043,-38.5532805,15z</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"> </p><br>
<p style="margin-bottom: 0cm; line-height: 100%;"><b>Edit Manga</b></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://faceyourmanga.com/editmangatar.php">https://faceyourmanga.com/editmangatar.php</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"> </p><br>
<p style="margin-bottom: 0cm; line-height: 100%;"><b>Google Trends</b> (pesquisa popularidade de algumas marcas no mercado)</p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="http://www.google.com/trends/">http://www.google.com/trends/</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"> </p><br>
<p style="margin-bottom: 0cm; line-height: 100%;"> </p>
<p style="margin-bottom: 0cm; line-height: 100%;"><span style="font-size: large;"><b>HTML, CSS e JavaScript</b></span></p>
<p style="margin-bottom: 0cm; line-height: 100%;"> </p><br>
<p style="margin-bottom: 0cm; line-height: 100%;"><b>Web development tutorials</b></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://www.w3resource.com/index.php">https://www.w3resource.com/index.php</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"> </p><br>
<p style="margin-bottom: 0cm; line-height: 100%;"><b>W3C School Tutoriais</b></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://www.w3schools.com/">https://www.w3schools.com/</a></p><br>
<p style="margin-bottom: 0cm; line-height: 100%;"><b>Eloquent Javascript - livro free em pt-br</b></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="http://braziljs.github.io/eloquente-javascript/">http://braziljs.github.io/eloquente-javascript/</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"> </p><br>
<p style="margin-bottom: 0cm; line-height: 100%;"><b>Tutoriais HTML Dog: HTML, CSS e JS</b></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://www.htmldog.com/guides/">https://www.htmldog.com/guides/</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"> </p><br>
<p style="margin-bottom: 0cm; line-height: 100%;"><b>Os 16 Melhores Sites de Desenvolvimento Web da Atualidade</b></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://www.cursos.wlconsultoria.net/blog/melhores-sites-de-desenvolvimento-web/">https://www.cursos.wlconsultoria.net/blog/melhores-sites-de-desenvolvimento-web/</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"> </p><br>
<p style="margin-bottom: 0cm; line-height: 100%;"><b>Aprendizado online</b></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://exercism.io/my/tracks">https://exercism.io/my/tracks</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"> </p><br>
<p style="margin-bottom: 0cm; line-height: 100%;"><b>HTML5 Tutorial | Wideskills</b></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://www.wideskills.com/technology/html5-tutorial">https://www.wideskills.com/technology/html5-tutorial</a></p><br>
<p style="margin-bottom: 0cm; line-height: 100%;"><b>Editor.md - Open source online Markdown editor.em</b></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://pandao.github.io/editor.md/en.html">https://pandao.github.io/editor.md/en.html</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"> </p><br>
<p style="margin-bottom: 0cm; line-height: 100%;"><b>Welcome - The complete HTML5 tutorial</b></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://html5-tutorial.net/">https://html5-tutorial.net/</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"> </p><br>
<p style="margin-bottom: 0cm; line-height: 100%;"><b>Engines para criação de Jogos e Tutoriais</b></p>
<p style="margin-bottom: 0cm; line-height: 100%;"> </p><br>
<p style="margin-bottom: 0cm; line-height: 100%;"><b>Scratch - Scratch 1.4 download</b></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://scratch.mit.edu/scratch_1.4/#installation">https://scratch.mit.edu/scratch_1.4/#installation</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"> </p><br>
<p style="margin-bottom: 0cm; line-height: 100%;"><b>Expo - Mobile online (criador de apps)</b></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://expo.io/">https://expo.io/</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"> </p><br>
<p style="margin-bottom: 0cm; line-height: 100%;"><b>React Native · A framework for building native apps using React</b></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://facebook.github.io/react-native/">https://facebook.github.io/react-native/</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"> </p><br>
<p style="margin-bottom: 0cm; line-height: 100%;"><b>Tutorial - Criar jogo em javascript e html 5</b></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://www.youtube.com/watch?v=z3r8up9cz3w">https://www.youtube.com/watch?v=z3r8up9cz3w</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"> </p><br>
<p style="margin-bottom: 0cm; line-height: 100%;"><b>Desenvolvendo um jogo completo com HTML, JavaScript e Phaser JS (13 aulas)</b></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://www.youtube.com/watch?v=SSlIJOD-JMU&list=PLclUTiUoLCbDog-vStY7VFHpFXJVML6EY">https://www.youtube.com/watch?v=SSlIJOD-JMU&list=PLclUTiUoLCbDog-vStY7VFHpFXJVML6EY</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"> </p><br>
<p style="margin-bottom: 0cm; line-height: 100%;"><b>100 Engines Mobile mais populares</b></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://www.moddb.com/engines/top">https://www.moddb.com/engines/top</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"> </p>
<p style="margin-bottom: 0cm; line-height: 100%;"> </p>
<br><br>
<p style="margin-bottom: 0cm; line-height: 100%;"><span style="font-size: large;" id="Lojas"><b>Lojas Virtuais</b></span></p>
<p style="margin-bottom: 0cm; line-height: 100%;"> </p>
<p style="margin-bottom: 0cm; line-height: 100%;"><b>Crie uma loja virtual completa e sem mensalidade - minestore (online)</b></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://www.minestore.com.br/">https://www.minestore.com.br/</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"> </p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://www.opencart.com/">https://www.opencart.com/</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"> </p>
<p style="margin-bottom: 0cm; line-height: 100%;"> </p>
<br><br>
<p style="margin-bottom: 0cm; line-height: 100%;"><span id="Bootstrap"><b><h3>Bootstrap</h3></b></span></p>
<p style="margin-bottom: 0cm; line-height: 100%;"> </p>
<p style="margin-bottom: 0cm; line-height: 100%;"><b>A Simple Bootstrap Tutorial | Toptal</b></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://www.toptal.com/front-end/what-is-bootstrap-a-short-tutorial-on-the-what-why-and-how">https://www.toptal.com/front-end/what-is-bootstrap-a-short-tutorial-on-the-what-why-and-how</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"> </p><br>
<p style="margin-bottom: 0cm; line-height: 100%;"><b>Bootstrap Themes Free</b></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://startbootstrap.com/template-categories/all/">https://startbootstrap.com/template-categories/all/</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"> </p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://bootswatch.com/">Bootswatch: Free themes for Bootstrap</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="http://upgrade-bootstrap.bootply.com/">Bootstrap 4 Upgrade - Convert Bootstrap 3 to Bootstrap 4</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://themestr.app/">Bootstrap Theme Builder and Customizer - Themestr.app</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="http://bootstrapdesigntools.com/tools/bootstrap-menu-builder/">Bootstrap Menu Builder | Bootstrap Navbar Builder | Bootstrap Design Tools</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="http://themes.guide/">Themes.guide - Bootstrap themes and templates</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="http://upgrade-bootstrap.bootply.com/bootstrap-4-customizer">Bootstrap 4 Custom Build</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="http://1000hz.github.io/bootstrap-validator/">Validator, for Bootstrap 3</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://www.youtube.com/watch?v=_0PL45xM__0&list=PLBbHLUbqqCrTwIrdix6kl84m4OPE0JexR">Apresentação do curso - Criando um site com Bootstrap 4 - Aula 01 - YouTube</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://www.youtube.com/watch?v=9QlRtS7FckI&list=PLBbHLUbqqCrSwtM4HbVVMPZ-rR_rAHXXx&index=2">Curso relâmpago de Bootstrap 4.0.0 - Aula 02 - Como criar layout responsivo com Bootstrap 4 - YouTube</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://www.quackit.com/bootstrap/bootstrap_4/tutorial/">Bootstrap 4 Tutorial</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://www.webnots.com/free-weebly-tutorials/">Free Weebly Tutorials » WebNots</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://bootsnipp.com/">Home of free code snippets for Bootstrap</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://www.bootdey.com/bootstrap-snippets">Free Bootstrap snippets</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://softwareengineering.stackexchange.com/">https://softwareengineering.stackexchange.com/</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://codereview.stackexchange.com/">https://codereview.stackexchange.com/</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"> </p>
<p style="margin-bottom: 0cm; line-height: 100%;"> </p><br><br>
<p style="margin-bottom: 0cm; line-height: 100%;"><b>W3schools</b></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://www.w3schools.com/html/default.asp">https://www.w3schools.com/html/default.asp</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://www.w3schools.com/css/default.asp">https://www.w3schools.com/css/default.asp</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://www.w3schools.com/js/default.asp">https://www.w3schools.com/js/default.asp</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://www.w3schools.com/jquery/default.asp">https://www.w3schools.com/jquery/default.asp</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://www.w3schools.com/bootstrap/default.asp">https://www.w3schools.com/bootstrap/default.asp</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://www.w3schools.com/bootstrap4/default.asp">https://www.w3schools.com/bootstrap4/default.asp</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://www.w3schools.com/php/default.asp">https://www.w3schools.com/php/default.asp</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://www.w3schools.com/php7/default.asp">https://www.w3schools.com/php7/default.asp</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://www.w3schools.com/sql/default.asp">https://www.w3schools.com/sql/default.asp</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"> </p>
<p style="margin-bottom: 0cm; line-height: 100%;"> </p>
<br><br>
<p style="margin-bottom: 0cm; line-height: 100%;"><span id="Freelancers"><h3>Sites para FreeLancers</h3></span></p>
<p style="margin-bottom: 0cm; line-height: 100%;"> </p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://www.nerdin.com.br/index">https://www.nerdin.com.br/index</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://www.workana.com/">https://www.workana.com/</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://programathor.com.br/">https://programathor.com.br/</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://materiais.vulpi.com.br/enjoythecode">https://materiais.vulpi.com.br/enjoythecode</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://www.freelancer.com/">https://www.freelancer.com/</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://www.br.freelancer.com/prolancer">https://www.br.freelancer.com/prolancer</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://www.99freelas.com.br/">https://www.99freelas.com.br/</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://www.upwork.com/">https://www.upwork.com/</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://www.peopleperhour.com/">https://www.peopleperhour.com/</a></p>
<h3 class="western"> </h3>
<h3 class="western" id="Engines">Engines Mobile</h3>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="http://opengameart.org/content/platformersidescroller-tiles">Platformer/Sidescroller Tiles and Backgrounds | OpenGameArt.org</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="http://textadventures.co.uk/quest">Quest - Write text adventure games and interactive stories</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://www.youtube.com/watch?v=c2Qw1ccY0-k">Vista 3D - Passeio pelo Campus Araguaia</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="http://www.engine001.com/">Free Game Maker Software :: 001 Criador de Jogos :: Home</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="http://useflashpunk.net/">FlashPunk: A game creation library for Actionscript 3</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="http://www.moddb.com/engines/top">100 Most Popular Game Engines - Mod DB</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="http://ratfactor.com/misc/hoot/hoot.html">Hoot - The Hypertext Adventure Game Builder</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="http://www.scirra.com/construct-classic">Make games with Construct Classic - Scirra.com</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="http://www.makehuman.org/">Makehuman | Open source tool for making 3D characters</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://web.archive.org/web/20130915030534/http://www.frecle.net/index.php?show=treed.about">Tree[d]</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="http://www.fifengine.net/">FIFE Engine - Python</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="http://www.piskelapp.com/">Piskel - Free online sprite editor</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="http://www.puzzlescript.net/index.html">PuzzleScript - an open-source HTML5 puzzle game engine</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://love2d.org/">LÖVE - Free 2D Game Engine</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="http://apps.pixlr.com/editor/">Photo editor online / free image editing direct in your browser - Pixlr.com</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="http://citrusengine.com/">Citrus | Game Engine for iOS, Android, BlackBerry, Windows, Mac and Linux</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="http://phaser.io/">Phaser - Desktop and Mobile HTML5 game framework</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="http://spark.tools/">Spark Game Engine</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="http://www.fabricadejogos.net/">Fábrica de Jogos</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="http://www.stencyl.com/">Stencyl: Make iPhone, iPad, Android & Flash Games without code</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="http://3dgep.com/category/unity/">Unity Archives - 3D Game Engine Programming3D Game Engine Programming</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="http://wimi5.com/">Wimi5 - Create, Publish & Monetize HTML5 games</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="http://code.tutsplus.com/series/getting-started-with-unity--active-7583">Getting Started with Unity - Tuts+ Code Tutorials</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="http://www.m2h.nl/files/js_to_c.php">Convert unity javascript (unityscript) to C#</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="http://www.sharecg.com/index.php">Welcome to ShareCG.com</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="http://www.1soundfx.com/">Download Sound Effects Library – Download Sound FX Library – 1SoundFX.com</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="http://unity3d.com/learn/tutorials/modules/beginner/scripting">Unity - Scripting</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="http://www.invent4.com/unisinos/turma05.htm">Jogos Digitais</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://developers.facebook.com/docs/games/unity/unity-tutorial">Unity Games Tutorial</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://www.allanbrito.com/category/download-gratuito/">download gratuito Archives - Allan Brito</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="http://en.wikibooks.org/wiki/Cg_Programming/Unity">Cg Programming/Unity - Wikibooks, open books for an open world</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="http://walkerboystudio.com/html/unity_training___free__.html">Unity Training (Free)</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="http://devmag.org.za/">devmag.org.za | A game development magazine</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="http://msdn.microsoft.com/en-us/library/aa287464(v=vs.71).aspx">Visual C# Code Example Topics</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="http://www.clickjogos.com.br/jogos-em-unity/">Jogos em Unity no Click Jogos</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="http://www.jogos.jocuri-unity3d.com/jogos-unity-3d/">Jogos unity 3D</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://unity3d.com/pt/learn/tutorials/projects/roll-a-ball/">Unity - Project: Roll-a-Ball</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="http://danim.tv/blog/archives/unity3d-source-code-example/">Unity3D Source Code Example |</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="http://wiki.blender.org/index.php/PT/Main_Page">PT/Main Page - BlenderWiki</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="http://unity3dbrasil.com/">Fórum Unity3D Brasil</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="http://gamedevelopment.tutsplus.com/categories/unity-3d">Unity 3D - Tuts+ Game Development Category</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="http://www.spriters-resource.com/custom_edited/mario/">Custom / Edited - Mario Series - The Spriters Resource</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="http://tf3dm.com/3d-models/blender">Blender 3D Models - Free 3D Blender download</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="http://www.hongkiat.com/blog/60-excellent-free-3d-model-websites/">60 Excellent Free 3D Model Websites</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="http://www.blender-models.com/">Blender 3D Model Download Repository | Blender 3D | BMR</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="http://www.raywenderlich.com/61532/unity-2d-tutorial-getting-started">Unity 4.3 2D Tutorial: Getting Started - Ray Wenderlich</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://3dwarehouse.sketchup.com/">3D Warehouse</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="http://www.mazegenerator.net/">Maze Generator</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="http://answers.unity3d.com/questions/16650/game-asset-website-list-free-and-paid-textures-mod.html">Game Asset Website List (Free and Paid) (Textures, Models, Packs, etc) - Unity Answers</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="http://www.85play.com/">85Play: Play free games!</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="http://www.wooglie.com/">Unity games on Wooglie - online web games, multiplayer and singleplayer. From racing games to FPS games. All games are made with Unity 3D.</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="http://www.unity-games.org/">Unity 3D Games - Free Online Flash Games</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="http://danim.tv/blog/archives/unity3d-source-code-example/">Unity3D Source Code Example |</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="http://www.superflashbros.net/as3sfxr/">as3sfxr</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="http://jogosindie.com/indice-unity/">Tutorial Unity - Jogos 2D</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="http://gamedevnation.com/creating-a-2d-game-with-unity/">Creating A 2D Game with Unity | Game Dev Nation</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="http://pixieengine.com/pixel-editor/">Pixel Editor PixieEngine - Create Games</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="http://opengameart.org/content/platformer-tiles">Platformer tiles | OpenGameArt.org</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="http://www.playonloop.com/">PlayOnLoop - Royalty-free Music Loops for Download</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="http://xdk-software.intel.com/">Intel® XDK</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="http://www.bfxr.net/">Bfxr. Make sound effects for your games.</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="http://unity3d.com/learn/tutorials/modules/live-training-archive">Unity - Live Training Archive</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="http://freesound.org/">Freesound.org - Freesound.org</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="http://design.tutsplus.com/articles/create-a-2d-sprite-sheet-for-unity-43-in-inkscape--vector-20104">Create a 2D Sprite Sheet for Unity 4.3 in Inkscape - Tuts+ Design & Illustration Article</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="http://fabricadeaplicativos.com.br/">Fábrica de Aplicativos :: Criar App Grátis | Descubra como fazer um Aplicativo Grátis - Home</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="http://www.spriters-resource.com/">The Spriters Resource</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="http://www.findsounds.com/">FindSounds - Search the Web for Sounds</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="http://pixelnest.io/tutorials/2d-game-unity/">Creating a 2D game with Unity — Pixelnest Studio</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="http://noobtuts.com/unity">noobtuts - Unity</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="http://howtomakemobilegames.forumchitchat.com/post/beginner-ping-pong-game-tutorial-for-unity-3d-aimed-at-new-game-developers-7005763?pid=1283657518#post1283657518">Beginner Ping Pong game tutorial for Unity 3D - aimed at new game developers - How To Make Mobile Games</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="http://www.kenny.nl/kleurplaten/">Kleurplaten</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="http://forum.unity3d.com/threads/games-released-with-unity-android.59697/">Games released with Unity Android | Unity Community</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="http://appinventor.mit.edu/explore/">MIT App Inventor | Explore MIT App Inventor</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="http://www.aquiris.com.br/?lang=pt_BR">Aquiris Game Studio</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="http://scratch.mit.edu/studios/349206/">Estúdio do Scratch - Scripts Workshop</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="http://byob.berkeley.edu/">SNAP! (Build Your Own Blocks)</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="http://www.videotoolbox.com/index.php">Video Toolbox - advanced online video editor. Convert, crop, merge or record videos with just few clicks.</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://www.udemy.com/unity3d-concepts/#/lecture/306930">Udemy - Online Courses from the World's Experts</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://www.udemy.com/unity3d-environmental-series/?sl=E0Addlo9RBMCLEwzBwZX&dtcode=swiwn3e3">Unity Training - Unity 4 Tutorial | Udemy</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="http://scratch.mit.edu/">Scratch - Imagine, Program, Share</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="http://fpscreator.thegamecreators.com/">FPS Creator Reloaded - by TGC</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="http://ead.allanbrito.com/curso/blender-2-6-basico/">Blender 2.6 Básico | EAD – Allan Brito</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://www.scirra.com/">Create Games with Construct 2 - Scirra.com</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="http://www.abragames.org/">ABRAGAMES | Associação Brasileira dos Desenvolvedores de Jogos Digitais</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="http://wiki.blender.org/index.php/Doc:PT/2.4/Manual/Game_Engine">Doc:PT/2.4/Manual/Game Engine - BlenderWiki</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="http://gamesalad.com/">Game Design Engine, Make Games for iPhone & Android - GameSalad</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="http://docs.unity3d.com/Documentation/Manual/index.html">Unity - Unity Manual</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://www.scirra.com/construct2/releases">Construct 2 Releases - Scirra.com</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="http://unity3d.com/pt/learn/tutorials/projects/stealth/project-overview">Unity - Stealth: Project Overview</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="http://docs.unity3d.com/Documentation/ScriptReference/index.html">Unity Script Reference:</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="http://wemakeagame.com.br/index.php?/forum/6-unity3d/">Unity3D - Wemakeagame - Fórum ©</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://www.assetstore.unity3d.com/#/content/456">Asset Store - Strumpy Shader Editor</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="http://gamerart-design.blogspot.com.br/2011/08/gamerart-curso-completo-de-unity-3d-em.html">GamerArt: GamerArt - Curso completo de Unity 3D em 16 partes</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="http://www.cursou.com.br/informatica/curso-unity-3d-android-javascript/">Curso de Unity 3D + Android + JavaScript</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="http://www.camaleaodigital.com.br/unity3dpods.html">Camaleão Digital - Cursos de Games e 3D</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="http://www.sploder.com/">Sploder - Make your own Games Online - Arcade, Platformer, Space & Retro Games</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="http://www.alphachannel.net.br/cursos/games/unity-3d">UNITY 3D :: Cursos livres em Games :: Cursos :: Alpha Channel - Centro de Computação Gráfica: cursos, software, hardware, pesquisa e serviços</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="http://www.edukee.com/pt/curso/minicurso-gratuito-unity-3d-para-criacao-de-jogos/modulo-interface/1537569092">Minicurso Gratuito Unity 3D para Criação de Jogos by Edukee</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="http://www.youtube.com/playlist?list=PLOFacakspTDLoesqkZMeweGAnhFiFWnbU">Vìdeo Aula Unit3D - Faça seu jogo 2D - YouTube</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="http://wemakeagame.com.br/">Wemakeagame - Fórum ©</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://www.facebook.com/groups/475754649180697/">Grupo GamesIndie</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="http://learnunity2d.com/">Learn Unity 2D | 2D game development in Unity</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="http://stocktraining.com.br/?service_cat=games">Cursos Unity 3D</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="http://www.lucianoaugusto.com.br/cursos/produo-de-games/unity-3d-total">Luciano Augusto - Cursos Online de 3D, Web Design, Programação e muito mais!</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="http://www.treinaweb.com.br/curso/unity-3d-basico">Curso de Unity 3D Básico | TreinaWeb Cursos Online</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="http://ead.allanbrito.com/curso/curso-basico-de-unity-3d/">Unity 3D Básico | EAD – Allan Brito</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://www.youtube.com/playlist?list=PLyu1C8yrMaihK2JKOzpX_uoQ8ww8V_9jF">Curso gratuíto de Unity3d - Mecanim - YouTube</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="http://www.eternix.com.br/pt/3dgamebuilder/tutoriais.php">Eternix - 3D Game Builder - Tutoriais</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="http://www.maratis3d.org/">http://www.maratis3d.org/</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="http://archive3d.net/">Free 35 000+ 3D models. Download without registration - Archive 3D</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="http://blenderart.org/issues/">BlenderArt Magazine » ISSUES</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="http://www.vtcom.com.br/cursos.php">Cursos VTCOM Treinamentos em Computação Gráfica</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="http://brackeys.com/">Brackeys - Become a Game Developer</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="http://opengameart.org/">OpenGameArt.org</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="http://www.gamesfoda.net/forum/index.php?PHPSESSID=d748c1f5d952dda4e207f2ac7dc5efe3&">GAMESFODA FORUMS - Índice</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="http://cgcookie.com/unity/">Unity Cookie | Unity Game Engine Tutorials and Resources</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="http://funny-pictures.picphotos.net/">Funny Pictures | Funny Photos | Funny Images</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="http://colivre.coop.br/CursoGIMP/WebHome">WebHome < CursoGIMP < Wiki-Colivre</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"> </p>
<br>
</div>
<div class="col-md-5">
<p style="margin-bottom: 0cm; line-height: 100%;"><span style="font-size: large;" id="Livros"><h3>Livros Free</h3></span></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://downloads.goalkicker.com/">https://downloads.goalkicker.com/</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://tiagosouza.com/livros-de-ti-para-download-de-graca/">https://tiagosouza.com/livros-de-ti-para-download-de-graca/</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://codigosimples.net/2016/02/12/1000-livros-gratuitos-sobre-programacao/">https://codigosimples.net/2016/02/12/1000-livros-gratuitos-sobre-programacao/</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="http://www.allitebooks.org/">All IT eBooks - Free IT eBooks Download</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://downloads.goalkicker.com/">Free Programming Books – GoalKicker.com</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://it-ebooks.info/">IT eBooks - Free Download - New Releases</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://livebook.manning.com/">liveBook - home</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://devdocs.io/">DevDocs API Documentation</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://github.com/ribafs/Grupo-de-Estudos-PHP-POO">ribafs/Grupo-de-Estudos-PHP-POO: Repositório do grupo de estudos de PHP/POO do Training Center.</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://snipplr.com/">Code Snippets - Snipplr Social Snippet Repository</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://github.com/topics/snippets-collection">Topic: snippets-collection</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://rocketseat.com.br/starter">Starter | Rocketseat</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://github.com/EbookFoundation/free-programming-books/blob/master/free-programming-books-pt_BR.md?fbclid=IwAR0OXEoSGqK6KMHDfu4LbUCosAxCpt-QRQytdNlG_CY5uNwk37rPyoQFfnA">free-programming-books/free-programming-books-pt_BR.md at master · EbookFoundation/free-programming-books · GitHub</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://tiagosouza.com/livros-de-ti-para-download-de-graca/">Livros de Tecnologia e Programação para download - Tiago Souza</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://codigosimples.net/2016/02/12/1000-livros-gratuitos-sobre-programacao/">1000 livros gratuitos sobre programação! - Código Simples .NET</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://www.tutorialrepublic.com/">Tutorial Republic - Online Web Development Tutorials</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://github.com/twhite96/js-dev-reads">A list of books JavaScript</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://www.tutorialrepublic.com/">Tutorial Republic - Online Web Development Tutorials</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://www.w3resource.com/index.php">Web development tutorials | w3resource</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://www.cursoemvideo.com/course/curso-de-algoritmos/">Curso em Vídeo</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://devfreebooks.github.io/">DevFreeBooks</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://pt.stackoverflow.com/">Stack Overflow em Português</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://www.syncfusion.com/ebooks?utm_source=Promo_Email&utm_medium=edm&utm_campaign=newsletteredmsep1918">Free ebooks for .NET & JavaScript Developers | Syncfusion</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://ebookfoundation.github.io/free-programming-books/free-programming-books-pt_BR.html">Índice | free-programming-books</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://github.com/EbookFoundation/free-programming-books">EbookFoundation/free-programming-books: Freely available programming books</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://livebook.manning.com/">liveBook - home</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"> </p>
<p style="margin-bottom: 0cm; line-height: 100%;"> </p>
<br><br>
<p style="margin-bottom: 0cm; line-height: 100%;"><span id="Cursos"><h3>Cursos Online Gratuitos</h3></span></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><b>Alguns com certificado</b></p>
<p style="margin-bottom: 0cm; line-height: 100%;"> </p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://www.schoolofnet.com/cursos/gratuitos">https://www.schoolofnet.com/cursos/gratuitos</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://www.primecursos.com.br/">https://www.primecursos.com.br/</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="http://www.brasilmaisti.com.br/index.php/pt-br/">http://www.brasilmaisti.com.br/index.php/pt-br/</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"> </p><br>
<p style="margin-bottom: 0cm; line-height: 100%;"><b>Mais de 2334 cursos online grátis com certificado</b></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://www.learncafe.com/cursos-gratis/informatica-e-internet/linguagens-de-programacao">https://www.learncafe.com/cursos-gratis/informatica-e-internet/linguagens-de-programacao</a></p><br>
<p style="margin-bottom: 0cm; line-height: 100%;"> </p>
<p style="margin-bottom: 0cm; line-height: 100%;"><b>Curso de PHP 7 - Aula 35 - Validações (Validate Filters)</b></p>
<p style="margin-bottom: 0cm; font-weight: normal; line-height: 100%;"><a href="https://www.youtube.com/watch?v=6J8lOhc1_IA&list=PLwXQLZ3FdTVEITn849NlfI9BGY-hk1wkq&index=35">https://www.youtube.com/watch?v=6J8lOhc1_IA&list=PLwXQLZ3FdTVEITn849NlfI9BGY-hk1wkq&index=35</a></p>
<p style="margin-bottom: 0cm; font-weight: normal; line-height: 100%;"> </p><br>
<p style="margin-bottom: 0cm; line-height: 100%;"><b>Estruturas de controle</b></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://www.youtube.com/watch?v=yJ94wzpJs9I&list=PLhUp81I0jET71gMTWy50cpAYHrWnVnYlA&index=2">https://www.youtube.com/watch?v=yJ94wzpJs9I&list=PLhUp81I0jET71gMTWy50cpAYHrWnVnYlA&index=2</a></p><br>
<p style="margin-bottom: 0cm; line-height: 100%;"> </p>
<p style="margin-bottom: 0cm; line-height: 100%;"><b>Curso de PHP 7 - Aula 36 - Sanitização (Sanitize Filters)</b></p>
<p style="margin-bottom: 0cm; font-weight: normal; line-height: 100%;"><a href="https://www.youtube.com/watch?v=V4AnuYaSWO4&list=PLwXQLZ3FdTVEITn849NlfI9BGY-hk1wkq&index=36">https://www.youtube.com/watch?v=V4AnuYaSWO4&list=PLwXQLZ3FdTVEITn849NlfI9BGY-hk1wkq&index=36</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"> </p><br>
<p style="margin-bottom: 0cm; line-height: 100%;"><b>Session</b></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://www.youtube.com/watch?v=vGog_Jn8PtU&list=PLwXQLZ3FdTVEITn849NlfI9BGY-hk1wkq&index=39">https://www.youtube.com/watch?v=vGog_Jn8PtU&list=PLwXQLZ3FdTVEITn849NlfI9BGY-hk1wkq&index=39</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"> </p><br>
<p style="margin-bottom: 0cm; line-height: 100%;"><b>Cookies</b></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://www.youtube.com/watch?v=ilHJx8hB8yA&list=PLwXQLZ3FdTVEITn849NlfI9BGY-hk1wkq&index=52">https://www.youtube.com/watch?v=ilHJx8hB8yA&list=PLwXQLZ3FdTVEITn849NlfI9BGY-hk1wkq&index=52</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"> </p>
<p style="margin-bottom: 0cm; line-height: 100%;"><b>Login</b></p><br>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://www.youtube.com/watch?v=SmMiPGTO5j0&list=PLwXQLZ3FdTVEITn849NlfI9BGY-hk1wkq&index=40">https://www.youtube.com/watch?v=SmMiPGTO5j0&list=PLwXQLZ3FdTVEITn849NlfI9BGY-hk1wkq&index=40</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://www.youtube.com/watch?v=dVTwNJ9kR2g&list=PLwXQLZ3FdTVEITn849NlfI9BGY-hk1wkq&index=41">https://www.youtube.com/watch?v=dVTwNJ9kR2g&list=PLwXQLZ3FdTVEITn849NlfI9BGY-hk1wkq&index=41</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"> </p><br>
<p style="margin-bottom: 0cm; line-height: 100%;"><b>Criptografia</b></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://www.youtube.com/watch?v=Yt35H_zinTk&list=PLwXQLZ3FdTVEITn849NlfI9BGY-hk1wkq&index=42">https://www.youtube.com/watch?v=Yt35H_zinTk&list=PLwXQLZ3FdTVEITn849NlfI9BGY-hk1wkq&index=42</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"> </p><br>
<p style="margin-bottom: 0cm; line-height: 100%;"><b>Hash de senhas</b></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://www.youtube.com/watch?v=F1bLyT55BWM&list=PLwXQLZ3FdTVEITn849NlfI9BGY-hk1wkq&index=43">https://www.youtube.com/watch?v=F1bLyT55BWM&list=PLwXQLZ3FdTVEITn849NlfI9BGY-hk1wkq&index=43</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"> </p><br>
<p style="margin-bottom: 0cm; line-height: 100%;"><b>CRUD</b></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://www.youtube.com/watch?v=TsmagMpNVAc&list=PLwXQLZ3FdTVEITn849NlfI9BGY-hk1wkq&index=46">https://www.youtube.com/watch?v=TsmagMpNVAc&list=PLwXQLZ3FdTVEITn849NlfI9BGY-hk1wkq&index=46</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://www.youtube.com/watch?v=I5RDNlfo7UY&list=PLwXQLZ3FdTVEITn849NlfI9BGY-hk1wkq&index=47">https://www.youtube.com/watch?v=I5RDNlfo7UY&list=PLwXQLZ3FdTVEITn849NlfI9BGY-hk1wkq&index=47</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://www.youtube.com/watch?v=233ZZu0RN3Q&list=PLwXQLZ3FdTVEITn849NlfI9BGY-hk1wkq&index=48">https://www.youtube.com/watch?v=233ZZu0RN3Q&list=PLwXQLZ3FdTVEITn849NlfI9BGY-hk1wkq&index=48</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://www.youtube.com/watch?v=eIJENREMcbo&list=PLwXQLZ3FdTVEITn849NlfI9BGY-hk1wkq&index=49">https://www.youtube.com/watch?v=eIJENREMcbo&list=PLwXQLZ3FdTVEITn849NlfI9BGY-hk1wkq&index=49</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://www.youtube.com/watch?v=w0hZtDWZJCA&list=PLwXQLZ3FdTVEITn849NlfI9BGY-hk1wkq&index=50">https://www.youtube.com/watch?v=w0hZtDWZJCA&list=PLwXQLZ3FdTVEITn849NlfI9BGY-hk1wkq&index=50</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"> </p><br>
<p style="margin-bottom: 0cm; line-height: 100%;"><b>RegEx</b></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://www.youtube.com/watch?v=yL9LQqG8o5I&list=PLwXQLZ3FdTVEITn849NlfI9BGY-hk1wkq&index=55">https://www.youtube.com/watch?v=yL9LQqG8o5I&list=PLwXQLZ3FdTVEITn849NlfI9BGY-hk1wkq&index=55</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"> </p><br>
<p style="margin-bottom: 0cm; line-height: 100%;"><b>Arrays</b></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://www.youtube.com/watch?v=N8zLAoF5PqI&list=PLXik_5Br-zO_5EGPG6_u-u0hVI_f_ThO_&index=13">https://www.youtube.com/watch?v=N8zLAoF5PqI&list=PLXik_5Br-zO_5EGPG6_u-u0hVI_f_ThO_&index=13</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"> </p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://www.educamaisbrasil.com.br/educacao/noticias/cursos-online-gratuitos-para-aprender-programacao">https://www.educamaisbrasil.com.br/educacao/noticias/cursos-online-gratuitos-para-aprender-programacao</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://olhardigital.com.br/noticia/10-cursos-gratuitos-para-voce-comecar-a-programar/76368">https://olhardigital.com.br/noticia/10-cursos-gratuitos-para-voce-comecar-a-programar/76368</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"> </p><br>
<p style="margin-bottom: 0cm; line-height: 100%;"><b>Upload de arquivos</b></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://www.youtube.com/watch?v=BaRKW4Cu7l4&list=PLwXQLZ3FdTVEITn849NlfI9BGY-hk1wkq&index=37">https://www.youtube.com/watch?v=BaRKW4Cu7l4&list=PLwXQLZ3FdTVEITn849NlfI9BGY-hk1wkq&index=37</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://www.youtube.com/watch?v=zBIQBOShTzU&list=PLwXQLZ3FdTVEITn849NlfI9BGY-hk1wkq&index=38">https://www.youtube.com/watch?v=zBIQBOShTzU&list=PLwXQLZ3FdTVEITn849NlfI9BGY-hk1wkq&index=38</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"> </p><br>
<p style="margin-bottom: 0cm; line-height: 100%;"><b>Lógica de programação</b></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://www.iped.com.br/cursos-gratis/programacao-e-desenvolvimento/curso-rapido/introducao-logica-programacao">https://www.iped.com.br/cursos-gratis/programacao-e-desenvolvimento/curso-rapido/introducao-logica-programacao</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://www.cursou.com.br/informatica/logica-de-programacao-2-4/">https://www.cursou.com.br/informatica/logica-de-programacao-2-4/</a></p><br>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://www.cursou.com.br/informatica/logica-programacao-algoritmos/">https://www.cursou.com.br/informatica/logica-programacao-algoritmos/</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://www.nodestudio.com.br/curso/curso-de-logica-de-programacao">https://www.nodestudio.com.br/curso/curso-de-logica-de-programacao</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"> </p><br>
<p style="margin-bottom: 0cm; line-height: 100%;"><b>Curso recomendado antes de iniciarmos nossos cursos</b></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://www.cursoemvideo.com/course/curso-de-algoritmos/">https://www.cursoemvideo.com/course/curso-de-algoritmos/</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"> </p><br>
<p style="margin-bottom: 0cm; line-height: 100%;"><b>HTML</b></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://www.schoolofnet.com/curso/frontend/html/html-basico-v2/">https://www.schoolofnet.com/curso/frontend/html/html-basico-v2/</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://www.cursou.com.br/informatica/curso-de-html-e-css/">https://www.cursou.com.br/informatica/curso-de-html-e-css/</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://www.cursou.com.br/informatica/html5/">https://www.cursou.com.br/informatica/html5/</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://www.cursou.com.br/informatica/html5-introducao-front-end/">https://www.cursou.com.br/informatica/html5-introducao-front-end/</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://www.cursou.com.br/informatica/html-e-css/">https://www.cursou.com.br/informatica/html-e-css/</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://www.nodestudio.com.br/curso/curso-de-html5">https://www.nodestudio.com.br/curso/curso-de-html5</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://www.primecursos.com.br/html-basico/">https://www.primecursos.com.br/html-basico/</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://www.devmedia.com.br/curso/curso-de-html-basico-acervo/2166">https://www.devmedia.com.br/curso/curso-de-html-basico-acervo/2166</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://eduk.me/course/curso-de-html/">https://eduk.me/course/curso-de-html/</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://www.wreducacional.com.br/curso-de-curso-de-html-basico">https://www.wreducacional.com.br/curso-de-curso-de-html-basico</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://www.nodestudio.com.br/curso/curso-html5-e-css3-na-pratica">https://www.nodestudio.com.br/curso/curso-html5-e-css3-na-pratica</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"> </p><br>
<p style="margin-bottom: 0cm; line-height: 100%;"><b>CSS</b></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://pt.khanacademy.org/computing/computer-programming/html-css">https://pt.khanacademy.org/computing/computer-programming/html-css</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://www.cursou.com.br/informatica/programacao/curso-de-css3/">https://www.cursou.com.br/informatica/programacao/curso-de-css3/</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://www.cursou.com.br/informatica/css3-2/">https://www.cursou.com.br/informatica/css3-2/</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://www.nodestudio.com.br/curso/curso-de-css3">https://www.nodestudio.com.br/curso/curso-de-css3</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"> </p><br>
<p style="margin-bottom: 0cm; line-height: 100%;"><b>JavaScript</b></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://www.schoolofnet.com/curso/frontend/javascript/iniciando-com-javascript-rev3/">https://www.schoolofnet.com/curso/frontend/javascript/iniciando-com-javascript-rev3/</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://www.cursou.com.br/informatica/frontend-javascript-dom/">https://www.cursou.com.br/informatica/frontend-javascript-dom/</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://www.cursou.com.br/informatica/desvendando-javascript/">https://www.cursou.com.br/informatica/desvendando-javascript/</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://www.cursou.com.br/informatica/javascript/">https://www.cursou.com.br/informatica/javascript/</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://www.ev.org.br/curso/informatica/desenvolvimento-web/introducao-ao-javascript?return=/cursos/informatica/desenvolvimento-web">https://www.ev.org.br/curso/informatica/desenvolvimento-web/introducao-ao-javascript?return=/cursos/informatica/desenvolvimento-web</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://www.cursou.com.br/informatica/jquerry/">https://www.cursou.com.br/informatica/jquerry/</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"> </p><br>
<p style="margin-bottom: 0cm; line-height: 100%;"><b>PHP</b></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><b>Curso de PHP 7 - 55 aulas</b></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://www.youtube.com/watch?v=XwpsxPmQN2E&list=PLwXQLZ3FdTVEITn849NlfI9BGY-hk1wkq">https://www.youtube.com/watch?v=XwpsxPmQN2E&list=PLwXQLZ3FdTVEITn849NlfI9BGY-hk1wkq</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"> </p><br>
<p style="margin-bottom: 0cm; line-height: 100%;"><b>PHP Básico em 78 aulas</b></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://www.youtube.com/playlist?list=PLXik_5Br-zO8k6B-mP_udfaQZKXfhOgkv">https://www.youtube.com/playlist?list=PLXik_5Br-zO8k6B-mP_udfaQZKXfhOgkv</a></p><br>
<p style="margin-bottom: 0cm; line-height: 100%;"> </p>
<p style="margin-bottom: 0cm; line-height: 100%;"><b>PHP – Boas práticas e conceitos modernos</b></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://www.youtube.com/playlist?list=PLXik_5Br-zO_5EGPG6_u-u0hVI_f_ThO">https://www.youtube.com/playlist?list=PLXik_5Br-zO_5EGPG6_u-u0hVI_f_ThO</a>_</p><br>
<p style="margin-bottom: 0cm; line-height: 100%;"> </p>
<p style="margin-bottom: 0cm; line-height: 100%;"><b>Curso de PHP - 108 aulas</b></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://www.youtube.com/watch?v=R_yRrYUHai0&list=PLesCEcYj003TrV2MvUOnmVtMdgIp0C4Pd">https://www.youtube.com/watch?v=R_yRrYUHai0&list=PLesCEcYj003TrV2MvUOnmVtMdgIp0C4Pd</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"> </p><br>
<p style="margin-bottom: 0cm; line-height: 100%;"><b>Curso de PHP para iniciantes - 24 aulas</b></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://www.youtube.com/watch?v=F7KzJ7e6EAc&list=PLHz_AreHm4dm4beCCCmW4xwpmLf6EHY9k">https://www.youtube.com/watch?v=F7KzJ7e6EAc&list=PLHz_AreHm4dm4beCCCmW4xwpmLf6EHY9k</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"> </p><br>
<p style="margin-bottom: 0cm; line-height: 100%;"><b>PHP 7 - 55 aulas</b></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://www.youtube.com/playlist?list=PLwXQLZ3FdTVEITn849NlfI9BGY-hk1wkq">https://www.youtube.com/playlist?list=PLwXQLZ3FdTVEITn849NlfI9BGY-hk1wkq</a></p><br>
<p style="margin-bottom: 0cm; line-height: 100%;"> </p>
<p style="margin-bottom: 0cm; line-height: 100%;"><b>Curso Completo de PHP</b></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://www.youtube.com/watch?v=Z1Kdt2dV3iM&list=PLhUp81I0jET71gMTWy50cpAYHrWnVnYlA">https://www.youtube.com/watch?v=Z1Kdt2dV3iM&list=PLhUp81I0jET71gMTWy50cpAYHrWnVnYlA</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"> </p><br>
<p style="margin-bottom: 0cm; line-height: 100%;"><b>Sistema Bancário</b></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://www.youtube.com/watch?v=smNmHHzdL-k&list=PLJTBAoW0kniZJDa11gXGjh3QrlcOOx_n">https://www.youtube.com/watch?v=smNmHHzdL-k&list=PLJTBAoW0kniZJDa11gXGjh3QrlcOOx_n</a>_</p>
<p style="margin-bottom: 0cm; line-height: 100%;"> </p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://www.nodestudio.com.br/curso/curso-de-php-7">https://www.nodestudio.com.br/curso/curso-de-php-7</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://www.schoolofnet.com/curso/php/linguagem-php/iniciando-com-php/">https://www.schoolofnet.com/curso/php/linguagem-php/iniciando-com-php/</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://www.cursou.com.br/informatica/sistema-login-php/">https://www.cursou.com.br/informatica/sistema-login-php/</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://www.cursou.com.br/informatica/php-psrs-boas-praticas/">https://www.cursou.com.br/informatica/php-psrs-boas-praticas/</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://www.cursou.com.br/informatica/php-hypertext-preprocessor/">https://www.cursou.com.br/informatica/php-hypertext-preprocessor/</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://www.cursou.com.br/informatica/programacao/php/php-basico-2-2/">https://www.cursou.com.br/informatica/programacao/php/php-basico-2-2/</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://www.cursou.com.br/informatica/poo-php/">https://www.cursou.com.br/informatica/poo-php/</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://www.cursou.com.br/informatica/desenvolvimento-web-php/">https://www.cursou.com.br/informatica/desenvolvimento-web-php/</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://www.cursou.com.br/informatica/desenvolvimento-portal-imobiliario/">https://www.cursou.com.br/informatica/desenvolvimento-portal-imobiliario/</a></p><br>
<p style="margin-bottom: 0cm; line-height: 100%;"><b>Curso de PHP OO com 22 aulas</b></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://www.youtube.com/watch?v=hzy_P_H-1CQ&list=PLwXQLZ3FdTVEau55kNj_zLgpXL4JZUg8I">https://www.youtube.com/watch?v=hzy_P_H-1CQ&list=PLwXQLZ3FdTVEau55kNj_zLgpXL4JZUg8I</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"> </p><br>
<p style="margin-bottom: 0cm; line-height: 100%;"><b>Locadora Virtual</b></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://www.asolucoesweb.com.br/curso/locadora-virtual">https://www.asolucoesweb.com.br/curso/locadora-virtual</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"> </p><br>
<p style="margin-bottom: 0cm; line-height: 100%;"><b>PHP para quem entende php</b></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://www.asolucoesweb.com.br/curso/php-para-quem-entende-php">https://www.asolucoesweb.com.br/curso/php-para-quem-entende-php</a></p><br>
<p style="margin-bottom: 0cm; line-height: 100%;"> </p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://www.asolucoesweb.com.br/curso/pdo-para-quem-nao-sabe-pdo">https://www.asolucoesweb.com.br/curso/pdo-para-quem-nao-sabe-pdo</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://www.asolucoesweb.com.br/curso/curso-ajax-com-php">https://www.asolucoesweb.com.br/curso/curso-ajax-com-php</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://www.asolucoesweb.com.br/curso/composer-para-iniciantes">https://www.asolucoesweb.com.br/curso/composer-para-iniciantes</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://www.asolucoesweb.com.br/curso/login-validacao-flash-messages">https://www.asolucoesweb.com.br/curso/login-validacao-flash-messages</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://www.asolucoesweb.com.br/curso/mysql-linha-comando-php">https://www.asolucoesweb.com.br/curso/mysql-linha-comando-php</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><a href="https://www.asolucoesweb.com.br/curso/javascript-para-iniciantes">https://www.asolucoesweb.com.br/curso/javascript-para-iniciantes</a></p>
<p style="margin-bottom: 0cm; line-height: 100%;"> </p><br>
<p style="margin-bottom: 0cm; line-height: 100%;"><b>Vários</b></p>
<p style="margin-bottom: 0cm; line-height: 100%;"><b><a href="https://www.cursoemvideo.com/">https://www.cursoemvideo.com/</a> </b></p>