Code and Output for insert:

Code:

    <!DOCTYPE html>
    <html>
    <head>
      <title>HTML Example</title>
    </head>
    <body>
      <h1>The ins element</h1>
      <p>My favorite color is <del>blue</del><ins>red</ins>!</p>
    </body>
    </html>
  

Output:

The ins element

My favorite color is blue red!