The <ins> tag is used to define a part of the text which has been inserted into the document.
It is displayed as an underlined text.
Syntax:
<ins>
For example:-
<!DOCTYPE html>
<html>
<head>
<title>Ins Tag</title>
</head>
<body>
<h2>The ins element</h2>
<p>My favourite city <del>Delhi</del> <ins>Mumbai</ins>?</p>
</body>
</html>
Copyright ©2022 coderraj.com. All Rights Reserved.