Programming Code Center(PCC)
[HTML]

(PCC)::[How-to-make-Marked-inserted-using-the-ins-element-in-HTML]::[html]

File Name : index.html

<!DOCTYPE html>
<html>
<body>

<p>The ins element represent inserted (added) text.</p>

<p>My favorite <ins>color</ins> is red.</p>

</body>
</html>

Output :

The ins element represent inserted (added) text.

My favorite color is red.