Quackit Scratchpad Enter your own HTML and preview it — all within the same screen.
Online Website Builder The HTML editors listed here are all open source. If you're a developer, you can download any of these editors from the website of the respective editor. Otherwise you can go ahead and generate HTML for your own project!
TinyMCE Editor
Embed Code basic setup:
<!DOCTYPE html> <html> <head> <script type="text/javascript" src="<your installation path>/tinymce/tinymce.min.js"></script> <script type="text/javascript"> tinymce.init({ selector: "#mytextarea" }); </script> </head> <body> <h1>TinyMCE Getting Started Guide</h1> <form method="post"> <textarea id="mytextarea"></textarea> </form> </body> </html>
Embed code Full futured :
<script type="text/javascript" src="<your installation path>/tinymce/tinymce.min.js"></script> <script type="text/javascript"> tinymce.init({ selector: "#mceEditor", theme: "modern", plugins: [ "advlist autolink lists link image charmap print preview hr anchor pagebreak", "searchreplace wordcount visualblocks visualchars code fullscreen", "insertdatetime media nonbreaking save table contextmenu directionality", "emoticons template paste textcolor colorpicker textpattern imagetools" ], toolbar1: "insertfile undo redo | styleselect | bold italic | alignleft aligncenter alignright alignjustify | bullist numlist outdent indent | link image", toolbar2: "print preview media | forecolor backcolor emoticons", image_advtab: true, templates: [ {title: 'Test template 1', content: 'Test 1'}, {title: 'Test template 2', content: 'Test 2'} ] }); </script> <textarea id="myEditor"></textarea>
TinyMCE is an open source WYSIWYG editor. The toolbar includes dropdown menus that are reminiscent of desktop applications. This could make it a front-runner choice for users who are not necessarily tech-savvy.
CKEditor (Standard)
Embed Code:
<script type="text/javascript" src="<your installation path>/ckeditor/ckeditor_4.4.1_standard/ckeditor.js"></script> <textarea class="ckeditor" id="myEditor" name="myEditor" cols="35" rows="20"></textarea> <script type="text/javascript"> //<![CDATA[ CKEDITOR.replace( 'myEditor', { fullPage : false, uiColor : '#efe8ce' }); //]]> </script>
CKEditor is another online WYSIWYG editor that can be plugged into any web project. Although it doesn't include the dropdown menus that TinyMCE does, it is still very user-friendly. The "Paste from Word" feature could make it the "go to" editor for users in corporate world.
CKEditor (Full-Featured)
CKEditor (Full-Featured)
Embed Code:
<!doctype html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="robots" content="noindex, nofollow"> <title>Full Preset</title> <script src="https://cdn.ckeditor.com/4.16.1/full/ckeditor.js"></script> </head> <body> <textarea cols="80" id="editor1" name="editor1" rows="10" data-sample-short><p>This is some <strong>sample text</strong>. You are using <a href="https://ckeditor.com/">CKEditor</a>.</p></textarea> <script> CKEDITOR.replace('editor1', { height: 400, baseFloatZIndex: 10005 }); </script> </body> </html>
This is the full-featured version of CKEditor. It provides a lot more options on the toolbar. Handy if the standard toolbar is not enough.
CKEditor (Classic)
Embed CKEditor classic:
<script type="text/javascript" src="<your installation path>/ckeditor/ckeditor.js"></script> <textarea class="ckeditor" id="editor1" name="editor1" cols="35" rows="10"> </textarea> <script type="text/javascript"> //<![CDATA[ CKEDITOR.replace( 'editor1', { fullPage : true, uiColor : '#efe8ce' }); //]]> </script>
This is a classic version of CKEditor. CKEditor 3.4 to be precise. This may be of interest if you have any browser compatibility issues with the more modern editors.
If you need an online editor to create a website, check out this online website builder by our partner site, ZappyHost.
Features include:
Drag-and-drop
Over 300 templates and 8,700 images
More than 70 pre-built websites for your industry, including text and images
Intuitive navigation
Ready-made designs for every business or industry
HTML/CSS design for advanced users
Easy editor tool for updates or changes to images and text
More at ZappyHost. Reblog https://www.quackit.com/