In-place editing is another beautiful feature in HTML5. which enable you to edit the webpage in the browser.

Try this piece of code

<section contenteditable="true">
  <h2>Click to change me</h2>
  <p>This paragraph can be changed</p>
  <ol>
    <li>This too can be edited<li>
    <li>and you can add more items</li>
    <li>after this one by pressing enter</li>
  </ol>
  <p>It's pretty neat stuff</p>
</section>



Leave a Reply.