1 | <!DOCTYPE html> |
---|
2 | <!-- |
---|
3 | Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved. |
---|
4 | For licensing, see LICENSE.md or http://ckeditor.com/license |
---|
5 | --> |
---|
6 | <html> |
---|
7 | <head> |
---|
8 | <meta charset="utf-8"> |
---|
9 | <title>#11641</title> |
---|
10 | <script src="../ckeditor.js"></script> |
---|
11 | <link href="sample.css" rel="stylesheet"> |
---|
12 | </head> |
---|
13 | <body> |
---|
14 | <h1 class="samples"> |
---|
15 | #11641 |
---|
16 | </h1> |
---|
17 | <form action="sample_posteddata.php" method="post"> |
---|
18 | <h1>Framed</h1> |
---|
19 | <textarea cols="80" id="editor1" name="editor1" rows="10"> |
---|
20 | <h1><img alt="Saturn V carrying Apollo 11" src="assets/sample.jpg" /> Apollo 11</h1> |
---|
21 | |
---|
22 | <p><strong>Apollo 11</strong> was the spaceflight [[that landed]] the first humans, Americans <a href="http://en.wikipedia.org/wiki/Neil_Armstrong" title="Neil Armstrong">Neil Armstrong</a> and <a href="http://en.wikipedia.org/wiki/Buzz_Aldrin" title="Buzz Aldrin">Buzz Aldrin</a>, 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.</p> |
---|
23 | |
---|
24 | <div style="page-break-after: always"><span style="display:none"> </span></div> |
---|
25 | |
---|
26 | <p><iframe frameborder="0" scrolling="no" src="/"></iframe>Armstrong spent about <s>three and a half</s> two 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, <a href="http://en.wikipedia.org/wiki/Michael_Collins_(astronaut)" title="Michael Collins (astronaut)">Michael Collins</a>, piloted the <a href="http://en.wikipedia.org/wiki/Apollo_Command/Service_Module" title="Apollo Command/Service Module">command</a> spacecraft alone in lunar orbit until Armstrong and Aldrin returned to it for the trip back to Earth.</p> |
---|
27 | |
---|
28 | <h2>Broadcasting and <em>quotes</em> <a id="quotes" name="quotes"></a></h2> |
---|
29 | |
---|
30 | <p>Broadcast on live TV to a world-wide audience, Armstrong stepped onto the lunar surface and described the event as:</p> |
---|
31 | |
---|
32 | <blockquote> |
---|
33 | <p>One small step for [a] man, one giant leap for mankind.</p> |
---|
34 | </blockquote> |
---|
35 | |
---|
36 | <p>Apollo 11 effectively ended the <a href="http://en.wikipedia.org/wiki/Space_Race" title="Space Race">Space Race</a> and fulfilled a national goal proposed in 1961 by the late U.S. President <a href="http://en.wikipedia.org/wiki/John_F._Kennedy" title="John F. Kennedy">John F. Kennedy</a> in a speech before the United States Congress:</p> |
---|
37 | |
---|
38 | <blockquote> |
---|
39 | <p>[...] before this decade is out, of landing a man on the Moon and returning him safely to the Earth.</p> |
---|
40 | </blockquote> |
---|
41 | </textarea> |
---|
42 | |
---|
43 | <h1>Inline</h1> |
---|
44 | <textarea cols="80" id="editor2" name="editor2" rows="10"> |
---|
45 | <h1><img alt="Saturn V carrying Apollo 11" src="assets/sample.jpg" /> Apollo 11</h1> |
---|
46 | |
---|
47 | <p><strong>Apollo 11</strong> was the spaceflight [[that landed]] the first humans, Americans <a href="http://en.wikipedia.org/wiki/Neil_Armstrong" title="Neil Armstrong">Neil Armstrong</a> and <a href="http://en.wikipedia.org/wiki/Buzz_Aldrin" title="Buzz Aldrin">Buzz Aldrin</a>, 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.</p> |
---|
48 | |
---|
49 | <div style="page-break-after: always"><span style="display:none"> </span></div> |
---|
50 | |
---|
51 | <p><iframe frameborder="0" scrolling="no" src="/"></iframe>Armstrong spent about <s>three and a half</s> two 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, <a href="http://en.wikipedia.org/wiki/Michael_Collins_(astronaut)" title="Michael Collins (astronaut)">Michael Collins</a>, piloted the <a href="http://en.wikipedia.org/wiki/Apollo_Command/Service_Module" title="Apollo Command/Service Module">command</a> spacecraft alone in lunar orbit until Armstrong and Aldrin returned to it for the trip back to Earth.</p> |
---|
52 | |
---|
53 | <h2>Broadcasting and <em>quotes</em> <a id="quotes" name="quotes"></a></h2> |
---|
54 | |
---|
55 | <p>Broadcast on live TV to a world-wide audience, Armstrong stepped onto the lunar surface and described the event as:</p> |
---|
56 | |
---|
57 | <blockquote> |
---|
58 | <p>One small step for [a] man, one giant leap for mankind.</p> |
---|
59 | </blockquote> |
---|
60 | |
---|
61 | <p>Apollo 11 effectively ended the <a href="http://en.wikipedia.org/wiki/Space_Race" title="Space Race">Space Race</a> and fulfilled a national goal proposed in 1961 by the late U.S. President <a href="http://en.wikipedia.org/wiki/John_F._Kennedy" title="John F. Kennedy">John F. Kennedy</a> in a speech before the United States Congress:</p> |
---|
62 | |
---|
63 | <blockquote> |
---|
64 | <p>[...] before this decade is out, of landing a man on the Moon and returning him safely to the Earth.</p> |
---|
65 | </blockquote> |
---|
66 | </textarea> |
---|
67 | |
---|
68 | <script> |
---|
69 | |
---|
70 | var config = { |
---|
71 | extraPlugins: 'image2,placeholder', |
---|
72 | removePlugins: 'image', |
---|
73 | height: 200 |
---|
74 | }; |
---|
75 | |
---|
76 | var editor1 = CKEDITOR.replace( 'editor1', config ); |
---|
77 | var editor2 = CKEDITOR.inline( 'editor2', config ); |
---|
78 | |
---|
79 | </script> |
---|
80 | </form> |
---|
81 | </body> |
---|
82 | </html> |
---|