HTML <ins> tag
HTML <ins> tag : Definition
• The <ins> defines a text that has been inserted into a document. The <ins> tag is typically used to specifies underline to inserted text but it can be changed using CSS property.
• The <ins> tag requires a starting and ending tag.
HTML <ins> tag example
<!DOCTYPE html> <html> <head> <title>The ins element example</title> </head> <body> <h1>The ins element example</h1> <p><del>This is a paragraph inside <del> element!</del></p> <p><ins>This is another paragraph inside <ins> element!</ins> </p> </body> </html>
Output:
The ins element example
This is a paragraph inside <del> element!This is another paragraph inside <ins> element!