| 123456789101112131415161718192021222324252627282930313233343536373839 | <!DOCTYPE html><html><head>  <meta charset="utf-8">  <meta name="viewport" content="width=device-width, height=device-height, initial-scale=1.0, maximum-scale=1.0" />  <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.4.0/css/font-awesome.min.css">  <link rel="stylesheet" href="../../css/froala_editor.css">  <link rel="stylesheet" href="../../css/froala_style.css">  <style>    div#editor {      width: 81%;      margin: auto;      text-align: left;    }    #edit {      display: inline-block;    }  </style></head><body>  <div id="editor">    <div id='edit' style="margin-top: 30px;">Click here to edit this text in a Froala popup.</div>  </div>  <script type="text/javascript" src="../../js/froala_editor.min.js"></script>  <script type="text/javascript" src="../../js/plugins/edit_in_popup.min.js"></script>  <script>    new FroalaEditor("#edit", {      editInPopup: true    })  </script></body></html>
 |