HTML INS TAG EXAMPLE
Run
<!doctype html>
    <head>
        <title>
            Example of The INS element
        </title>
    </head>
    <body>
        <p>HTML stands for Hypertext Markup Language.</p>
        <p>HTML is the basic building block of any webpage. It is used with CSS and Javascript to create interative web pages.</p>
        <p><ins>HTML5 is the latest version of HTML</ins></p>
    </body>
</html>