| 12345678910111213141516171819202122232425262728293031323334353637383940 | 
							- <html lang="en">
 -   <head>
 -     <meta charset="UTF-8" />
 -     <meta name="viewport" content="width=device-width, initial-scale=1.0" />
 -     <meta http-equiv="X-UA-Compatible" content="ie=edge" />
 -     <title>fc-whiteboard</title>
 -     <style>
 -       .image {
 -         width: 500px;
 -         height: 500px;
 -         top: 100px;
 -         position: absolute;
 -       }
 -     </style>
 -   </head>
 -   <body>
 -     <body>
 -       <noscript>You need to enable JavaScript to run this app.</noscript>
 -       <div id="root">
 -         <img
 -           id="image1"
 -           class="image"
 -           style="left:100px"
 -           src="https://i.postimg.cc/SNDkCfXD/image.png"
 -         />
 -         <img
 -           id="image2"
 -           class="image"
 -           style="left:800px"
 -           src="https://i.postimg.cc/SNDkCfXD/image.png"
 -         />
 -       </div>
 -       <script>
 -         window.__DEV_APP__ = {};
 -       </script>
 -       <script src="./index.js"></script>
 -     </body>
 -   </body>
 - </html>
 
 
  |