| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <script src="/o2_lib/htmleditor/ckeditor4114/ckeditor.js"></script>
- <title>Document Editor</title>
- <style type="text/css">
- /* Minimal styling to center the editor in this sample */
- body {
- padding: 30px;
- display: flex;
- align-items: center;
- text-align: center;
- }
- .container {
- margin: 0 auto;
- }
- </style>
- </head>
- <body>
- <div class="container">
- <h2><label for="editor1">Document Editor</label></h2>
- <textarea id="editor1">
- <h2 style="text-align: center;">The Flavorful Tuscany Meetup</h2>
- <p style="text-align: center;"><span style="color: #007ac9;"><strong>Welcome letter</strong></span></p>
- <p>Dear Guest,</p>
- <p>We are delighted to welcome you to the annual <em>Flavorful Tuscany Meetup</em> and hope you will enjoy the programme as well as your stay at the Bilancino Hotel.</p>
- <p>Please find below the full schedule of the event.</p>
- <table class="schedule" cellpadding="15" cellspacing="0" style="border-collapse:collapse;width:100%;">
- <thead>
- <tr>
- <th colspan="2" scope="col" style="background-color: #F2F9FF; text-align: center; font-size: 21px;"><span>Saturday, July 14</span></th>
- </tr>
- </thead>
- <tbody>
- <tr>
- <td style="white-space:nowrap;"><span>9:30 AM - 11:30 AM</span></td>
- <td><span>Americano vs. Brewed - “know your coffee” session with <strong>Stefano Garau</strong></span></td>
- </tr>
- <tr>
- <td style="white-space:nowrap;"><span>1:00 PM - 3:00 PM</span></td>
- <td><span>Pappardelle al pomodoro - live cooking session with <strong>Rita Fresco</strong></span></td>
- </tr>
- <tr>
- <td style="white-space:nowrap;"><span>5:00 PM - 8:00 PM</span></td>
- <td><span>Tuscan vineyards at a glance - wine-tasting session with <strong>Frederico Riscoli</strong></span></td>
- </tr>
- </tbody>
- </table>
- <blockquote>
- <p>The annual Flavorful Tuscany meetups are always a culinary discovery. You get the best of Tuscan flavors during an intense one-day stay at one of the top hotels of the region. All the sessions are lead by top chefs passionate about their profession. I would certainly recommend to save the date in your calendar for this one!</p>
- <p>Angelina Calvino, food journalist</p>
- </blockquote>
- <p>Please arrive at the Bilancino Hotel reception desk at least <strong>half an hour earlier</strong> to make sure that the registration process goes as smoothly as possible.</p>
- <p>We look forward to welcoming you to the event.</p>
- <p></p>
- <p><strong>Victoria Valc</strong></p>
- <p><strong>Event Manager</strong></p>
- <p><strong>Bilancino Hotel</strong></p>
- </textarea>
- </div>
- <script>
- CKEDITOR.inline( 'editor1', {
- toolbar: [
- { name: 'document', items: [ 'Print' ] },
- { name: 'clipboard', items: [ 'Undo', 'Redo' ] },
- { name: 'styles', items: [ 'Format', 'Font', 'FontSize' ] },
- { name: 'basicstyles', items: [ 'Bold', 'Italic', 'Underline', 'Strike', 'RemoveFormat', 'CopyFormatting' ] },
- { name: 'colors', items: [ 'TextColor', 'BGColor' ] },
- { name: 'align', items: [ 'JustifyLeft', 'JustifyCenter', 'JustifyRight', 'JustifyBlock' ] },
- { name: 'links', items: [ 'Link', 'Unlink' ] },
- { name: 'paragraph', items: [ 'NumberedList', 'BulletedList', '-', 'Outdent', 'Indent', '-', 'Blockquote' ] },
- { name: 'insert', items: [ 'Image', 'Table' ] },
- { name: 'tools', items: [ 'Maximize' ] },
- { name: 'editing', items: [ 'Scayt' ] }
- ]});
- </script>
- </body>
- </html>
|