HTML Inserted Formatting Explain
The HTML <ins> element defines inserted (added) text.
Html Code:
<!DOCTYPE html>
<html>
<body>
<p>The ins element represent inserted (added) text.</p>
<p>My favorite <ins>color</ins> is red.</p>
</body>
</html>
Post a Comment