forked from SaijoGeorge/HelpMeBuild
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1091 lines (1065 loc) · 49.3 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" class="no-js">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="theme-color" content="#1cd1af">
<script type="text/javascript">
var host = "helpmebuild.io";
if ((host == window.location.host) && (window.location.protocol != "https:"))
window.location.protocol = "https";
</script>
<link href='https://fonts.googleapis.com/css?family=Open+Sans:400,300,600,700' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="css/reset.css">
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/animatedheadline.css">
<link rel="stylesheet" type="text/css" href="css/contentanimation.css" />
<link href="https://netdna.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.css" rel="stylesheet">
<script src="js/modernizr.js"></script>
<title>Build Websites - Logos - Apps ~ HelpMeBuild.io</title>
<link rel="canonical" href="https://helpmebuild.io" />
<meta name="author" content="Saijo George">
<meta name="copyright" content="Saijo George">
<meta name="description" content="Handpicked tools to help you build websites, logos, resumes, videos and more, all in one location.">
<meta name="robots" content="all">
<meta property="og:site_name" content="HelpMeBuild.io">
<meta property="og:title" content="Help Me Build . IO - anyone can build websites and logos">
<meta property="og:description" content="Handpicked tools to help you build websites, logos, resumes, videos and more, all in one location.">
<meta property="og:type" content="website">
<meta property="og:url" content="https://helpmebuild.io">
<meta property="og:image" content="https://helpmebuild.io/img/helpmebuild.png">
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:site" content="@Saijo_George">
<meta name="twitter:creator" content="@Saijo_George">
<meta name="twitter:title" content="Help Me Build . IO - anyone can build websites and logos">
<meta name="twitter:domain" content="https://helpmebuild.io">
<meta name="twitter:description" content="Handpicked tools to help you build websites, logos, resumes, videos and more, all in one location.">
<meta name="twitter:image:src" content="https://helpmebuild.io/img/helpmebuild.png">
<link rel="apple-touch-icon" sizes="57x57" href="/apple-icon-57x57.png">
<link rel="apple-touch-icon" sizes="60x60" href="/apple-icon-60x60.png">
<link rel="apple-touch-icon" sizes="72x72" href="/apple-icon-72x72.png">
<link rel="apple-touch-icon" sizes="76x76" href="/apple-icon-76x76.png">
<link rel="apple-touch-icon" sizes="114x114" href="/apple-icon-114x114.png">
<link rel="apple-touch-icon" sizes="120x120" href="/apple-icon-120x120.png">
<link rel="apple-touch-icon" sizes="144x144" href="/apple-icon-144x144.png">
<link rel="apple-touch-icon" sizes="152x152" href="/apple-icon-152x152.png">
<link rel="apple-touch-icon" sizes="180x180" href="/apple-icon-180x180.png">
<link rel="icon" type="image/png" sizes="192x192" href="/android-icon-192x192.png">
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="96x96" href="/favicon-96x96.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
<link rel="manifest" href="/manifest.json">
<meta name="msapplication-TileColor" content="#ffffff">
<meta name="msapplication-TileImage" content="/ms-icon-144x144.png">
<meta name="theme-color" content="#ffffff">
<script src='//cdn.goroost.com/roostjs/6ryd970rm3m3e2d7erxvbnktnkzbt62k' async></script>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-49302038-7', 'auto');
ga('send', 'pageview');
</script>
<!-- start Mixpanel --><script type="text/javascript">(function(f,b){if(!b.__SV){var a,e,i,g;window.mixpanel=b;b._i=[];b.init=function(a,e,d){function f(b,h){var a=h.split(".");2==a.length&&(b=b[a[0]],h=a[1]);b[h]=function(){b.push([h].concat(Array.prototype.slice.call(arguments,0)))}}var c=b;"undefined"!==typeof d?c=b[d]=[]:d="mixpanel";c.people=c.people||[];c.toString=function(b){var a="mixpanel";"mixpanel"!==d&&(a+="."+d);b||(a+=" (stub)");return a};c.people.toString=function(){return c.toString(1)+".people (stub)"};i="disable track track_pageview track_links track_forms register register_once alias unregister identify name_tag set_config people.set people.set_once people.increment people.append people.union people.track_charge people.clear_charges people.delete_user".split(" ");
for(g=0;g<i.length;g++)f(c,i[g]);b._i.push([a,e,d])};b.__SV=1.2;a=f.createElement("script");a.type="text/javascript";a.async=!0;a.src="undefined"!==typeof MIXPANEL_CUSTOM_LIB_URL?MIXPANEL_CUSTOM_LIB_URL:"//cdn.mxpnl.com/libs/mixpanel-2-latest.min.js";e=f.getElementsByTagName("script")[0];e.parentNode.insertBefore(a,e)}})(document,window.mixpanel||[]);
mixpanel.init("bcda30b6d59703f69d6e34547df73db6");</script><!-- end Mixpanel -->
<script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
<script>
(adsbygoogle = window.adsbygoogle || []).push({
google_ad_client: "ca-pub-4939718182327406",
enable_page_level_ads: true
});
</script>
<!-- Begin Cookie Consent plugin by Silktide - http://silktide.com/cookieconsent -->
<script type="text/javascript">
window.cookieconsent_options = {"message":"This website uses cookies to ensure you get the best experience on our website","dismiss":"Got it!","learnMore":"More info","link":"http://helpmebuild.io/privacy.html","theme":"dark-bottom"};
</script>
<script type="text/javascript" src="//s3.amazonaws.com/cc.silktide.com/cookieconsent.latest.min.js"></script>
<!-- End Cookie Consent plugin -->
</head>
<body>
<header class="cd-header">
<section class="cd-intro">
<h1 class="cd-headline main-title rotate-1">
<span>Help Me Build</span>
<span class="cd-words-wrapper">
<b class="is-visible">. IO</b>
<b>Websites</b>
<b>Apps</b>
<b>Logos</b>
<b>Images</b>
<b>Emails</b>
<b>Videos</b>
<b>...</b>
<b>Anything</b>
</span>
</h1>
</section>
</header>
<div class="intro-text"> HelpMeBuild.io helps you discover high quality tools, that can help you build your dream websites, logos, graphics, videos and a lot more, all in one location. Not knowing to design or code should not stop you from creating awesome stuff. <br/><br/><i>If you don't build your dream, someone will hire you to help build theirs.</i> - Tony A. Gaskins Jr.
</div>
<main class="cd-main-content">
<div class="cd-tab-filter-wrapper">
<div class="cd-tab-filter">
<ul class="cd-filters">
<li class="placeholder">
<a data-type="all" href="#all">All</a> <!-- selected option on mobile -->
</li>
<li class="filter"><a class="selected" href="#all" data-type="all">All</a></li>
<li class="filter" data-filter=".build-website"><a href="#website" data-type="build-website">Website</a></li>
<li class="filter" data-filter=".build-wordpress"><a href="#wordpress" data-type="build-wordpress">WordPress</a></li>
<li class="filter" data-filter=".build-bootstrap"><a href="#bootstrap" data-type="build-bootstrap">Bootstrap</a></li>
<li class="filter" data-filter=".build-app"><a href="#app" data-type="build-app">App</a></li>
<li class="filter" data-filter=".build-logo"><a href="#logo" data-type="build-logo">Logo</a></li>
<li class="filter" data-filter=".build-graphics"><a href="#graphics" data-type="build-graphics">Graphics</a></li>
<li class="filter" data-filter=".build-email"><a href="#email" data-type="build-email">Email</a></li>
<li class="filter" data-filter=".build-presentation"><a href="#presentation" data-type="build-presentation">Presentation</a></li>
<li class="filter" data-filter=".build-video"><a href="#video" data-type="build-video">Video</a></li>
<li class="filter" data-filter=".build-others"><a href="#others" data-type="build-others">Others</a></li>
<!-- <li class="filter" data-filter=".build-businesscards"><a href="#businesscards" data-type="build-businesscards">Business Cards</a></li> -->
<!-- <li class="filter" data-filter=".build-mockups"><a href="#mockups" data-type="build-mockups">Mockups</a></li> -->
<!-- <li class="filter" data-filter=".build-invoice"><a href="#invoice" data-type="build-invoice">Invoice</a></li> -->
<!-- <li class="filter" data-filter=".build-form"><a href="#form" data-type="build-form">Form</a></li> -->
<!-- <li class="filter" data-filter=".build-resume"><a href="#resume" data-type="build-resume">Resume</a></li> -->
<!-- <li class="filter" data-filter=".build-prototypes"><a href="#prototypes" data-type="build-prototypes">Prototypes</a></li> -->
</ul> <!-- cd-filters -->
</div> <!-- cd-tab-filter -->
</div> <!-- cd-tab-filter-wrapper -->
<section class="cd-gallery">
<ul class="grid cs-style-5">
<li class="mix build-website build-form build-others radioPaid">
<figure>
<img src="img/leadpages.png" alt="leadpages">
<figcaption>
<span>Helps you build conversion optimized, responsive landing pages.</span>
<a target="_blank" rel="nofollow" href="http://www.leadpages.net/">LeadPages</a>
</figcaption>
</figure>
</li>
<li class="mix build-app radioPaid">
<figure>
<img src="img/appgyver.png" alt="appgyver">
<figcaption>
<span>Fast way to bootstrap your HTML5 hybrid apps.</span>
<a target="_blank" rel="nofollow" href="http://www.appgyver.com/composer">AppGyver Composer</a>
</figcaption>
</figure>
</li>
<li class="mix build-wordpress radioPaid">
<figure>
<img src="img/upfront.png" alt="upfront">
<figcaption>
<span>Customize and run a WordPress site, entirely from your front-end.</span>
<a target="_blank" rel="nofollow" href="http://demo.upfront.pro/">Upfront</a>
</figcaption>
</figure>
</li>
<li class="mix build-bootstrap radioPaid">
<figure>
<img src="img/brix.png" alt="brix">
<figcaption>
<span>Premium Bootstrap interface builder.</span>
<a target="_blank" rel="nofollow" href="http://brix.io/">Brix.io</a>
</figcaption>
</figure>
</li>
<li class="mix build-graphics radioFullFree">
<figure>
<img src="img/befunky.png" alt="befunky">
<figcaption>
<span>BeFunky lets you apply photo effects, edit photos and create photo collages with collage maker.</span>
<a target="_blank" rel="nofollow" href="http://www.befunky.com/">Befunky</a>
</figcaption>
</figure>
</li>
<li class="mix build-others radioPaid">
<figure>
<img src="img/statuspageio.png" alt="statuspageio">
<figcaption>
<span>The best way to create a status page for your app or website.</span>
<a target="_blank" rel="nofollow" href="https://www.statuspage.io/">StatusPage</a>
</figcaption>
</figure>
</li>
<li class="mix build-website build-resume featureimport radioFree">
<figure>
<img src="img/strikingly-linkedin.png" alt="strikingly-linkedin">
<figcaption>
<span>Create a website using your LinkedIn profile.</span>
<a target="_blank" rel="nofollow" href="https://www.strikingly.com/online-resume/linkedin">Strikingly</a>
</figcaption>
</figure>
</li>
<li class="mix build-logo build-graphics build-others radioFree">
<figure>
<img src="img/uplevo.png" alt="uplevo">
<figcaption>
<span>Create your own logos and banners.</span>
<a target="_blank" rel="nofollow" href="http://www.uplevo.com/get-started">Uplevo</a>
</figcaption>
</figure>
</li>
<li class="mix iframefix build-resume build-prototypes build-website build-wordpress build-app build-bootstrap build-logo build-graphics build-email build-presentation build-video build-others build-businesscards build-mockups build-invoice build-form radioPaid radioFree radioFullFree featureimport">
<script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
<!-- HelpMeBuild_300x250 -->
<ins class="adsbygoogle"
style="display:inline-block;width:300px;height:250px"
data-ad-client="ca-pub-4939718182327406"
data-ad-slot="8645579471"></ins>
<script>
(adsbygoogle = window.adsbygoogle || []).push({});
</script>
</li>
<li class="mix build-website radioPaid">
<figure>
<img src="img/pixeltogether.png" alt="pixeltogether">
<figcaption>
<span>Design your own responsive websites without coding.</span>
<a target="_blank" rel="nofollow" href="https://pixeltogether.com/">PixelTogether</a>
</figcaption>
</figure>
</li>
<li class="mix build-prototypes build-others radioPaid">
<figure>
<img src="img/proto.png" alt="proto">
<figcaption>
<span>Create fully-interactive prototypes that look and work exactly like your app should. No coding required.</span>
<a target="_blank" rel="nofollow" href="https://proto.io/">Proto.io</a>
</figcaption>
</figure>
</li>
<li class="mix build-others radioPaid">
<figure>
<img src="img/beagle.png" alt="beagle">
<figcaption>
<span>Beagle gives you a smarter way to create compelling proposals, faster.</span>
<a target="_blank" rel="nofollow" href="https://getbeagle.co/">Beagle</a>
</figcaption>
</figure>
</li>
<li class="mix build-resume build-others radioFullFree">
<figure>
<img src="img/standardresume.png" alt="standardresume">
<figcaption>
<span>Easily and quickly create a professional online resume.</span>
<a target="_blank" rel="nofollow" href="https://standardresume.co/">Standard Resume</a>
</figcaption>
</figure>
</li>
<li class="mix build-website build-form build-others radioPaid">
<figure>
<img src="img/wishpond.png" alt="wishpond">
<figcaption>
<span>Build your own landing page, forms, pop ups and more.</span>
<a target="_blank" rel="nofollow" href="https://www.wishpond.com/central/landing_pages/v2/859076/edit/participation?urk=418b5f54ae82abccd24c40db1d084936ff0353794005c770&wizard_step_key=7a657f62-d142-4ad9-a73e-e16eb4b1ad32">Wishpond</a>
</figcaption>
</figure>
</li>
<li class="mix build-presentation radioFree">
<figure>
<img src="img/pitcherific.png" alt="pitcherific">
<figcaption>
<span>Improve pitching ideas with our free pitch-training tool.</span>
<a target="_blank" rel="nofollow" href="https://pitcherific.com/">Pitcherific</a>
</figcaption>
</figure>
</li>
<li class="mix build-graphics build-businesscards radioPaid">
<figure>
<img src="img/youzign.png" alt="youzign">
<figcaption>
<span>Youzign is an online graphic design tool.</span>
<a target="_blank" rel="nofollow" href="https://youzign.com/">youzign</a>
</figcaption>
</figure>
</li>
<li class="mix build-graphics build-mockups radioFree">
<figure>
<img src="img/placeit.png" alt="placeit">
<figcaption>
<span>Creating iPhone mockups and iPad mockups within seconds.</span>
<a target="_blank" rel="nofollow" href="https://placeit.net">Placeit</a>
</figcaption>
</figure>
</li>
<li class="mix build-email radioFullFree">
<figure>
<img src="img/bee.png" alt="bee">
<figcaption>
<span>A free online email editor.</span>
<a target="_blank" rel="nofollow" href="https://beefree.io">BeeFree</a>
</figcaption>
</figure>
</li>
<li class="mix build-wordpress radioPaid">
<figure>
<img src="img/csshero.png" alt="csshero">
<figcaption>
<span>WordPress plugin to customize your theme with an easy point and click interface.</span>
<a target="_blank" rel="nofollow" href="http://www.csshero.org/?rid=2522">CSS Hero</a>
</figcaption>
</figure>
</li>
<li class="mix build-website build-wordpress build-bootstrap radioPaid">
<figure>
<img src="img/pinegrow.png" alt="pinegrow">
<figcaption>
<span>A desktop app that lets you build responsive websites faster.</span>
<a target="_blank" rel="nofollow" href="https://pinegrow.com/">Pinegrow</a>
</figcaption>
</figure>
</li>
<li class="mix build-graphics build-others build-businesscards radioFullFree">
<figure>
<img src="img/business-card-maker.png" alt="business-card-maker">
<figcaption>
<span>A simple and easy to use business cards generator.</span>
<a target="_blank" rel="nofollow" href="https://www.bizcardmaker.com">Business Card Maker</a>
</figcaption>
</figure>
</li>
<li class="mix build-logo radioFullFree">
<figure>
<img src="img/designrails.png" alt="designrails">
<figcaption>
<span>Applying art and science to create custom-made, meaningful logos.</span>
<a target="_blank" rel="nofollow" href="https://designrails.com">Design Rails</a>
</figcaption>
</figure>
</li>
<li class="mix build-website radioFree">
<figure>
<img src="img/webflow.png" alt="webflow">
<figcaption>
<span>A professional site builder for designing websites from scratch.</span>
<a target="_blank" rel="nofollow" href="https://webflow.com">Web Flow</a>
</figcaption>
</figure>
</li>
<li class="mix build-graphics radioFree">
<figure>
<img src="img/shareasimage.png" alt="shareasimage">
<figcaption>
<span>Turn images or text into viral, eye-catching micro-content that you can share in seconds.</span>
<a target="_blank" rel="nofollow" href="https://shareasimage.com/">Share As Image</a>
</figcaption>
</figure>
</li>
<li class="mix build-resume build-others radioFullFree">
<figure>
<img src="img/ineedaresume.png" alt="ineedaresume">
<figcaption>
<span>Ineedaresu.me is a super simple and free resume generator.</span>
<a target="_blank" rel="nofollow" href="http://ineedaresu.me/">I need a Resume</a>
</figcaption>
</figure>
</li>
<li class="mix build-website radioPaid">
<figure>
<img src="img/carbonmade.png" alt="carbonmade">
<figcaption>
<span>Carbonmade helps you create and manage an online portfolio website.</span>
<a target="_blank" rel="nofollow" href="https://carbonmade.com/">Carbonmade</a>
</figcaption>
</figure>
</li>
<li class="mix build-wordpress radioPaid">
<figure>
<img src="img/visualcomposer.png" alt="visualcomposer">
<figcaption>
<span>Page builder for WordPress.</span>
<a target="_blank" rel="nofollow" href="http://codecanyon.net/item/visual-composer-page-builder-for-wordpress/242431?ref=SaijoGeorge">Visual Composer</a>
</figcaption>
</figure>
</li>
<li class="mix build-others build-form radioFree">
<figure>
<img src="img/formcraft.png" alt="formcraft">
<figcaption>
<span>FormCrafts is an online form builder to help you create great forms for your site</span>
<a target="_blank" rel="nofollow" href="http://formcrafts.com/">FormCrafts</a>
</figcaption>
</figure>
</li>
<li class="mix build-graphics build-mockups build-app radioFullFree">
<figure>
<img src="img/launchkit.png" alt="launchkit">
<figcaption>
<span>Create gorgeous images for your App Store page in minutes.</span>
<a target="_blank" rel="nofollow" href="https://launchkit.io/screenshots">LaunchKit Screenshot</a>
</figcaption>
</figure>
</li>
<li class="mix build-app featureimport radioPaid">
<figure>
<img src="img/appmachine.png" alt="appmachine">
<figcaption>
<span>Use the content of your website and choose a skin or start from scratch. Build an app within hours.</span>
<a target="_blank" rel="nofollow" href="http://www.appmachine.com/">AppMachine</a>
</figcaption>
</figure>
</li>
<li class="mix build-website radioFree">
<figure>
<img src="img/froont.png" alt="froont">
<figcaption>
<span>Browser based tool for creating and collaborating on web design without code.</span>
<a target="_blank" rel="nofollow" href="http://froont.com/">Froont</a>
</figcaption>
</figure>
</li>
<li class="mix build-logo build-graphics build-businesscards build-others radioFree">
<figure>
<img src="img/logaster.png" alt="logaster">
<figcaption>
<span>Professional online logo, businesscard maker and generator.</span>
<a target="_blank" rel="nofollow" href="https://www.logaster.com/ref/helpmebuild.html">Logaster</a>
</figcaption>
</figure>
</li>
<li class="mix iframefix build-resume build-prototypes build-website build-wordpress build-app build-bootstrap build-logo build-graphics build-email build-presentation build-video build-others build-businesscards build-mockups build-invoice build-form radioPaid radioFree radioFullFree featureimport">
<script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
<!-- HelpMeBuild_300x250 -->
<ins class="adsbygoogle"
style="display:inline-block;width:300px;height:250px"
data-ad-client="ca-pub-4939718182327406"
data-ad-slot="8645579471"></ins>
<script>
(adsbygoogle = window.adsbygoogle || []).push({});
</script>
</li>
<li class="mix build-presentation radioFree">
<figure>
<img src="img/infogram.png" alt="infogram">
<figcaption>
<span>Create infographics, interactive online charts.</span>
<a target="_blank" rel="nofollow" href="https://infogr.am/">infogr.am</a>
</figcaption>
</figure>
</li>
<li class="mix build-wordpress radioFullFree">
<figure>
<img src="img/onepager.png" alt="onepager">
<figcaption>
<span>OnePage website builder for WordPress and Joomla.</span>
<a target="_blank" rel="nofollow" href="http://getonepager.com/#a_aid=helpmebuild">Get One Pager</a>
</figcaption>
</figure>
</li>
<li class="mix build-others radioFree">
<figure>
<img src="img/bettererrorpages.png" alt="bettererrorpages">
<figcaption>
<span>Build free 404, 500-level, and maintenance pages in 60 seconds.</span>
<a target="_blank" rel="nofollow" href="https://better-error-pages.statuspage.io/">Better Error Pages</a>
</figcaption>
</figure>
</li>
<li class="mix build-bootstrap radioFullFree">
<figure>
<img src="img/layoutit.png" alt="layoutit">
<figcaption>
<span>Create Bootstrap sites using a drag and drop interface builder.</span>
<a target="_blank" rel="nofollow" href="http://www.layoutit.com/">LayoutIt!</a>
</figcaption>
</figure>
</li>
<li class="mix build-website build-others radioPaid">
<figure>
<img src="img/fedora.png" alt="fedora">
<figcaption>
<span>Create your own online courses.</span>
<a target="_blank" rel="nofollow" href="https://usefedora.com/">Fedora</a>
</figcaption>
</figure>
</li>
<li class="mix build-website build-resume featureimport radioFree">
<figure>
<img src="img/branded.png" alt="branded">
<figcaption>
<span>Turn your existing information from LinkedIn into a website in seconds.</span>
<a target="_blank" rel="nofollow" href="https://branded.me">Branded.me</a>
</figcaption>
</figure>
</li>
<li class="mix build-website build-others radioFree">
<figure>
<img src="img/sponseasy.png" alt="sponseasy">
<figcaption>
<span>Create sponsorship deck for your event right from your browser.</span>
<a target="_blank" rel="nofollow" href="http://www.sponseasy.com/">Sponseasy</a>
</figcaption>
</figure>
</li>
<li class="mix build-others build-invoice radioFullFree">
<figure>
<img src="img/billable.png" alt="billable">
<figcaption>
<span>Billing Made Simple. Period.</span>
<a target="_blank" rel="nofollow" href="http://billable.me/">Billable.me</a>
</figcaption>
</figure>
</li>
<li class="mix build-presentation radioFree">
<figure>
<img src="img/venngage.png" alt="venngage">
<figcaption>
<span>Everything you need to create and publish infographics is right here.</span>
<a target="_blank" rel="nofollow" href="https://venngage.com">Venngage</a>
</figcaption>
</figure>
</li>
<li class="mix build-graphics radioFree">
<figure>
<img src="img/canva.png" alt="canva">
<figcaption>
<span>Canva makes design simple for everyone. Graphics, Flyers, Posters and more.</span>
<a target="_blank" rel="nofollow" href="https://www.canva.com">Canva</a>
</figcaption>
</figure>
</li>
<li class="mix build-website radioFree">
<figure>
<img src="img/jimdo.png" alt="jimdo">
<figcaption>
<span>Easy way to create your own website.</span>
<a target="_blank" rel="nofollow" href="http://www.jimdo.com/">Jimdo</a>
</figcaption>
</figure>
</li>
<li class="mix build-app build-wordpress featureimport radioPaid">
<figure>
<img src="img/reactor.png" alt="reactor">
<figcaption>
<span>Build a mobile app for your WordPress based business.</span>
<a target="_blank" rel="nofollow" href="https://reactor.apppresser.com">Reactor</a>
</figcaption>
</figure>
</li>
<li class="mix build-graphics build-others build-mockups radioFree">
<figure>
<img src="img/magicmockups.png" alt="magicmockups">
<figcaption>
<span>A product/app mockup generator.</span>
<a target="_blank" rel="nofollow" href="http://magicmockups.com/">Magic Mockups</a>
</figcaption>
</figure>
</li>
<li class="mix build-website radioFree">
<figure>
<img src="img/variant.png" alt="variant">
<figcaption>
<span>Real-time page building and content editing, all in the comfort of your browser.</span>
<a target="_blank" rel="nofollow" href="http://www.mrare.co/variant/">Variant</a>
</figcaption>
</figure>
</li>
<li class="mix build-bootstrap radioFullFree">
<figure>
<img src="img/scripteden.png" alt="scripteden">
<figcaption>
<span>Free drag and drop Bootstrap builder.</span>
<a target="_blank" rel="nofollow" href="http://scripteden.com/builder/bootstrap/">ScriptEden</a>
</figcaption>
</figure>
</li>
<li class="mix build-logo radioFree">
<figure>
<img src="img/tailor.png" alt="tailor">
<figcaption>
<span>Logo design made simple. Get instant custom-made logos.</span>
<a target="_blank" rel="nofollow" href="https://www.tailorbrands.com/business">Tailor</a>
</figcaption>
</figure>
</li>
<li class="mix build-website featureimport radioPaid">
<figure>
<img src="img/appsites.png" alt="appsites">
<figcaption>
<span>Create a beautiful website for your mobile app.</span>
<a target="_blank" rel="nofollow" href="https://appsites.com">Appsites</a>
</figcaption>
</figure>
</li>
<li class="mix build-video radioPaid">
<figure>
<img src="img/animoto.png" alt="animoto">
<figcaption>
<span>Make great videos. Easily.</span>
<a target="_blank" rel="nofollow" href="https://animoto.com/">Animoto</a>
</figcaption>
</figure>
</li>
<li class="mix build-graphics build-others build-mockups radioFullFree">
<figure>
<img src="img/dunnnk.png" alt="dunnnk">
<figcaption>
<span>Upload your images and generate beautiful product mockups.</span>
<a target="_blank" rel="nofollow" href="http://dunnnk.com/">Dunnnk</a>
</figcaption>
</figure>
</li>
<li class="mix build-resume build-others featureimport radioFree">
<figure>
<img src="img/doyoubuzz.png" alt="doyoubuzz">
<figcaption>
<span>Create stunning online resume using LinkedIn and other templates.</span>
<a target="_blank" rel="nofollow" href="http://www.doyoubuzz.com">Do You Buzz</a>
</figcaption>
</figure>
</li>
<li class="mix build-website radioFree">
<figure>
<img src="img/webydo.png" alt="webydo">
<figcaption>
<span>Create custom tailored design from scratch without writing one line of code.</span>
<a target="_blank" rel="nofollow" href="http://www.webydo.com/">Webydo</a>
</figcaption>
</figure>
</li>
<li class="mix build-others radioFree">
<figure>
<img src="img/decor.png" alt="decor">
<figcaption>
<span>Now anyone can design custom Facebook fanpages.</span>
<a target="_blank" rel="nofollow" href="https://decor.io/">decor.io</a>
</figcaption>
</figure>
</li>
<li class="mix build-website featureimport radioFullFree">
<figure>
<img src="img/inventive.png" alt="inventive">
<figcaption>
<span>Beautiful portfolios from your Github profile.</span>
<a target="_blank" rel="nofollow" href="http://inventive.io/">Inventive</a>
</figcaption>
</figure>
</li>
<li class="mix build-email radioFree">
<figure>
<img src="img/mailerlite.png" alt="mailerlite">
<figcaption>
<span>Drag-and-drop newsletter editor.</span>
<a target="_blank" rel="nofollow" href="http://www.mailerlite.com/a/lhah4hkcl7">MailerLite</a>
</figcaption>
</figure>
</li>
<li class="mix build-graphics radioFullFree">
<figure>
<img src="img/buffer-pablo.png" alt="buffer-pablo">
<figcaption>
<span>Design engaging images for your social media posts in under 30 seconds.</span>
<a target="_blank" rel="nofollow" href="https://bufferapp.com/pablo">Buffer Pablo</a>
</figcaption>
</figure>
</li>
<li class="mix build-website radioFree">
<figure>
<img src="img/squarespace.png" alt="squarespace">
<figcaption>
<span>Building a beautiful website is easy, with Squarespace.</span>
<a target="_blank" rel="nofollow" href="http://www.squarespace.com/">Squarespace</a>
</figcaption>
</figure>
</li>
<li class="mix build-bootstrap radioPaid">
<figure>
<img src="img/jetstrap.png" alt="jetstrap">
<figcaption>
<span>Jetstrap is the premier interface-building tool for Bootstrap 3.</span>
<a target="_blank" rel="nofollow" href="https://jetstrap.com/">Jetstrap</a>
</figcaption>
</figure>
</li>
<li class="mix build-website radioFree">
<figure>
<img src="img/weebly.png" alt="weebly">
<figcaption>
<span>A platform to plan, build, publish and grow your site.</span>
<a target="_blank" rel="nofollow" href="http://www.weebly.com/">Weebly</a>
</figcaption>
</figure>
</li>
<li class="mix build-others build-invoice radioFullFree">
<figure>
<img src="img/slimvoice.png" alt="slimvoice">
<figcaption>
<span>Insanely simple invoices, designed for minimalists.</span>
<a target="_blank" rel="nofollow" href="http://slimvoice.co/">Slimvoice</a>
</figcaption>
</figure>
</li>
<li class="mix build-logo radioPaid">
<figure>
<img src="img/withoomph.png" alt="withoomph">
<figcaption>
<span>Create relevant and beautiful designed logos instantly.</span>
<a target="_blank" rel="nofollow" href="https://withoomph.com/">Withoomph</a>
</figcaption>
</figure>
</li>
<li class="mix build-website radioFree">
<figure>
<img src="img/wix.png" alt="wix">
<figcaption>
<span>A free website builder</span>
<a target="_blank" rel="nofollow" href="http://www.wix.com/">Wix</a>
</figcaption>
</figure>
</li>
<li class="mix build-wordpress radioFullFree">
<figure>
<img src="img/layerswp.png" alt="layerswp">
<figcaption>
<span>A WordPress site builder so simple, you’ll be a pro the first time you use it.</span>
<a target="_blank" rel="nofollow" href="http://www.layerswp.com/">Layers</a>
</figcaption>
</figure>
</li>
<li class="mix iframefix build-resume build-prototypes build-website build-wordpress build-app build-bootstrap build-logo build-graphics build-email build-presentation build-video build-others build-businesscards build-mockups build-invoice build-form radioPaid radioFree radioFullFree featureimport">
<script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
<!-- HelpMeBuild_300x250 -->
<ins class="adsbygoogle"
style="display:inline-block;width:300px;height:250px"
data-ad-client="ca-pub-4939718182327406"
data-ad-slot="8645579471"></ins>
<script>
(adsbygoogle = window.adsbygoogle || []).push({});
</script>
</li>
<li class="mix build-graphics radioFree">
<figure>
<img src="img/fotor.png" alt="fotor">
<figcaption>
<span>Photo collage and editing made simple and fun.</span>
<a target="_blank" rel="nofollow" href="http://www.fotor.com/">Fotor</a>
</figcaption>
</figure>
</li>
<li class="mix build-bootstrap radioFullFree">
<figure>
<img src="img/pingendo.png" alt="pingendo">
<figcaption>
<span>A PC / Mac / Linux Bootstrap editor.</span>
<a target="_blank" rel="nofollow" href="http://pingendo.com/">Pingendo</a>
</figcaption>
</figure>
</li>
<li class="mix build-wordpress radioFullFree">
<figure>
<img src="img/cloud-press.png" alt="cloud-press">
<figcaption>
<span>Create unique responsive WordPress sites without coding.</span>
<a target="_blank" rel="nofollow" href="http://cloud-press.net/">Cloud-Press</a>
</figcaption>
</figure>
</li>
<li class="mix build-website radioPaid">
<figure>
<img src="img/thegrid.png" alt="thegrid">
<figcaption>
<span>AI that builds your website using videos, images and other content.</span>
<a target="_blank" rel="nofollow" href="https://thegrid.io/">The Grid</a>
</figcaption>
</figure>
</li>
<li class="mix build-others build-form radioFree">
<figure>
<img src="img/wufoo.png" alt="wufoo">
<figcaption>
<span>Wufoo makes building online forms easy.</span>
<a target="_blank" rel="nofollow" href="http://www.wufoo.com/">Wufoo</a>
</figcaption>
</figure>
</li>
<li class="mix build-graphics build-others build-mockups radioFullFree">
<figure>
<img src="img/frame.png" alt="frame">
<figcaption>
<span>Create great looking Product Mockups for free with Frame.</span>
<a target="_blank" rel="nofollow" href="http://frame.lab25.co.uk/">frame</a>
</figcaption>
</figure>
</li>
<li class="mix build-website radioPaid">
<figure>
<img src="img/megaphone.png" alt="megaphone">
<figcaption>
<span>The easiest way to create beautiful marketing pages.</span>
<a target="_blank" rel="nofollow" href="http://mbsy.co/bGRBZ">Megaphone</a>
</figcaption>
</figure>
</li>
<li class="mix build-graphics build-mockups radioFree">
<figure>
<img src="img/immagipic.png" alt="immagipic">
<figcaption>
<span>The first online scene creator.</span>
<a target="_blank" rel="nofollow" href="http://www.immagipic.com/">immagiPic</a>
</figcaption>
</figure>
</li>
<li class="mix build-video build-presentation radioFree">
<figure>
<img src="img/proshowweb.png" alt="proshowweb">
<figcaption>
<span>Instantly create a beautiful video slideshow with photos, videos and music on your Mac or PC.</span>
<a target="_blank" rel="nofollow" href="http://web.photodex.com/">ProShowWeb</a>
</figcaption>
</figure>
</li>
<li class="mix build-website radioFree">
<figure>
<img src="img/iFrapp.png" alt="iFrapp">
<figcaption>
<span>Create awesome Facebook apps and online landing pages in minutes.</span>
<a target="_blank" rel="nofollow" href="https://www.ifrapp.com/">iFrapp</a>
</figcaption>
</figure>
</li>
<li class="mix build-website featureimport radioFree">
<figure>
<img src="img/strikingly-facebook.png" alt="strikingly-facebook">
<figcaption>
<span>Create a website using your Facebook profile.</span>
<a target="_blank" rel="nofollow" href="http://www.strikingly.com/oneclick/facebook_page">Strikingly</a>
</figcaption>
</figure>
</li>
<li class="mix build-wordpress radioPaid">
<figure>
<img src="img/qards.png" alt="qards">
<figcaption>
<span>Responsive page builder plugin for WordPress.</span>
<a target="_blank" rel="nofollow" href="http://designmodo.com/qards/?u=1708">Qards</a>
</figcaption>
</figure>
</li>
<li class="mix build-graphics radioFullFree">
<figure>
<img src="img/spruce.png" alt="spruce">
<figcaption>
<span>Make Twitter ready images in seconds.</span>
<a target="_blank" rel="nofollow" href="http://www.tryspruce.com/">Spruce</a>
</figcaption>
</figure>
</li>
<li class="mix build-email radioFullFree">
<figure>
<img src="img/stamplia.png" alt="stamplia">
<figcaption>
<span>Easy to use editor for Stamplia email templates</span>
<a target="_blank" rel="nofollow" href="https://builder.stamplia.com/">Stamplia</a>
</figcaption>
</figure>
</li>
<li class="mix build-website radioPaid">
<figure>
<img src="img/eventgrid.png" alt="eventgrid">
<figcaption>
<span>Create beautiful event websites in minutes and delight your customers.</span>
<a target="_blank" rel="nofollow" href="https://www.ifrapp.com/">Eventgrid Expression</a>
</figcaption>
</figure>
</li>
<li class="mix build-logo radioFree">
<figure>
<img src="img/hipsterlogogenerator.png" alt="hipsterlogogenerator">
<figcaption>
<span>Create epic hipster logos with a few clicks.</span>
<a target="_blank" rel="nofollow" href="http://www.hipsterlogogenerator.com/">Hipster Logo Generator</a>
</figcaption>
</figure>
</li>
<li class="mix build-website radioFree">
<figure>
<img src="img/stackhive.png" alt="StackHive">
<figcaption>
<span>Design, develop, publish or download websites right from your browser.</span>
<a target="_blank" rel="nofollow" href="http://stackhive.com/">StackHive</a>
</figcaption>
</figure>
</li>
<li class="mix build-bootstrap radioPaid">
<figure>
<img src="img/blocsapp.png" alt="blocsapp">
<figcaption>
<span>Build modern, quality, static websites without the need to understand or write code.</span>
<a target="_blank" rel="nofollow" href="http://www.blocsapp.com/">BlocsApp</a>
</figcaption>
</figure>
</li>
<li class="mix build-website radioFree">
<figure>
<img src="img/plebu.png" alt="plebu">
<figcaption>
<span>Make your own website in minutes with our easy-to-use builder and beautiful designs.</span>
<a target="_blank" rel="nofollow" href="http://plebu.com/">Plebu</a>
</figcaption>
</figure>
</li>
<li class="mix build-website featureimport radioFullFree">
<figure>
<img src="img/cmdspace.png" alt="cmdspace">
<figcaption>
<span>Instant design portfolios via dribbble.</span>
<a target="_blank" rel="nofollow" href="http://cmdspace.com/">CMD Space</a>
</figcaption>
</figure>
</li>
<li class="mix build-presentation build-graphics radioFree">
<figure>
<img src="img/visme.png" alt="visme">
<figcaption>
<span>Create presentations, infographics, and more in your browser.</span>
<a target="_blank" rel="nofollow" href="http://www.visme.co/">Visme</a>
</figcaption>
</figure>
</li>
<li class="mix build-website radioFree">
<figure>
<img src="img/webs.png" alt="webs">
<figcaption>
<span>Create a free website with our professionally designed templates and easy to use website builder.</span>
<a target="_blank" rel="nofollow" href="http://www.webs.com/">Webs</a>
</figcaption>
</figure>
</li>
<li class="mix build-resume build-others radioFree">
<figure>
<img src="img/professionis.png" alt="professionis">
<figcaption>
<span>A simple resume generator.</span>
<a target="_blank" rel="nofollow" href="http://profession.is/">Profession.is</a>
</figcaption>
</figure>
</li>
<li class="mix build-logo radioFullFree">
<figure>
<img src="img/squarespace-logo.png" alt="squarespace-logo">
<figcaption>
<span>Drag-and-drop logo builder.</span>
<a target="_blank" rel="nofollow" href="http://www.squarespace.com/logo/">Squarespace Logo</a>
</figcaption>
</figure>
</li>
<li class="mix build-website featureimport radioFullFree">
<figure>
<img src="img/stockroom.png" alt="stockroom">
<figcaption>
<span>Bulid your developer portfolio in a click, using github.</span>
<a href="http://stockroom.io/">Stockroom</a>
</figcaption>
</figure>
</li>
<li class="mix build-website build-presentation build-app radioFree">
<figure>
<img src="img/intuilab.png" alt="intuilab">
<figcaption>
<span>Build interactive multitouch presentations and connected digital experience without code.</span>
<a target="_blank" rel="nofollow" href="http://www.intuilab.com/">IntuiLab</a>
</figcaption>
</figure>
</li>
<li class="mix build-others radioFullFree">
<figure>
<img src="img/duetto.png" alt="duetto">
<figcaption>
<span>Simple & Easy Dropbox Web Hosting. Create Hassle-Free Dropbox-Powered Websites.</span>
<a target="_blank" rel="nofollow" href="http://duet.to/">duet.to</a>
</figcaption>
</figure>
</li>
<li class="mix build-website radioPaid">
<figure>
<img src="img/pikock.jpg" alt="pikock">
<figcaption>
<span>Build multi-device websites without coding.</span>
<a target="_blank" rel="nofollow" href="http://www.pikock.com/">Pikock</a>
</figcaption>
</figure>
</li>
<li class="gap"></li>
<li class="gap"></li>
<li class="gap"></li>
</ul>