Form - CKEditor

One stop solution for perfect admin dashboard!

Basic Example
<form>    <textarea name="editor1" id="editor1" rows="10" cols="80">        Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.    </textarea></form><!-- ========== JS ========== --><script>    $(function($) {        CKEDITOR.replace( 'editor1' );    });</script>                                                    
Editor Size

Saturn V carrying Apollo 11Apollo 11

Apollo 11was the spaceflight that landed the first humans, Americans Neil Armstrongand Buzz Aldrin, on the Moon on July 20, 1969, at 20:18 UTC. Armstrong became the first to step onto the lunar surface 6 hours later on July 21 at 02:56 UTC.

Armstrong spent about three and a halftwo and a half hours outside the spacecraft, Aldrin slightly less; and together they collected 47.5 pounds (21.5 kg) of lunar material for return to Earth. A third member of the mission, Michael Collins, piloted the commandspacecraft alone in lunar orbit until Armstrong and Aldrin returned to it for the trip back to Earth.

Broadcasting and quotes

Broadcast on live TV to a world-wide audience, Armstrong stepped onto the lunar surface and described the event as:

One small step for [a] man, one giant leap for mankind.

Apollo 11 effectively ended the Space Raceand fulfilled a national goal proposed in 1961 by the late U.S. President John F. Kennedyin a speech before the United States Congress:

[...] before this decade is out, of landing a man on the Moon and returning him safely to the Earth.

Technical details

Mission crew
Position Astronaut
Commander Neil A. Armstrong
Command Module Pilot Michael Collins
Lunar Module Pilot Edwin "Buzz" E. Aldrin, Jr.

Launched by a Saturn Vrocket from Kennedy Space Centerin Merritt Island, Florida on July 16, Apollo 11 was the fifth manned mission of NASA's Apollo program. The Apollo spacecraft had three parts:

  1. Command Modulewith a cabin for the three astronauts which was the only part which landed back on Earth
  2. Service Modulewhich supported the Command Module with propulsion, electrical power, oxygen and water
  3. Lunar Modulefor landing on the Moon.

After being sent to the Moon by the Saturn V's upper stage, the astronauts separated the spacecraft from it and travelled for three days until they entered into lunar orbit. Armstrong and Aldrin then moved into the Lunar Module and landed in the Sea of Tranquility. They stayed a total of about 21 and a half hours on the lunar surface. After lifting off in the upper part of the Lunar Module and rejoining Collins in the Command Module, they returned to Earth and landed in the Pacific Oceanon July 24.


Source: Wikipedia.org

<form>    <textarea name="editor2" id="editor2" rows="10" cols="80">        Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.    </textarea></form><!-- ========== JS ========== --><script>    $(function($) {        CKEDITOR.replace( 'editor2', {            width: '90%',            height: 500        } );    });</script>                                                    
Custom Toolbar
<form>    <textarea name="editor3" id="editor3" rows="10" cols="80">        Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.    </textarea></form><!-- ========== JS ========== --><script>    $(function($) {        CKEDITOR.replace( 'editor3', {            // Define the toolbar groups as it is a more accessible solution.            toolbarGroups: [                {"name":"basicstyles","groups":["basicstyles"]},                {"name":"links","groups":["links"]},                {"name":"paragraph","groups":["list","blocks"]},                {"name":"document","groups":["mode"]},                {"name":"insert","groups":["insert"]},                {"name":"styles","groups":["styles"]},                {"name":"about","groups":["about"]}            ],            // Remove the redundant buttons from toolbar groups defined above.            removeButtons: 'Underline,Strike,Subscript,Superscript,Anchor,Styles,Specialchar'        } );    });</script>