HTML <ins> Tag
The <ins> tag in HTML is used to specify a block of inserted text. The <ins> tag is typically used to mark a range of text that has been added to the document. The inserted text is rendered as underlined text by the web browsers although this property can be changed using CSS text-decoration property. The <ins> tag requires a starting and ending tag.
Syntax:
<ins> Contents... </ins>
Attributes:
- cite: It is used to specify the URL of the document or message which denotes the reason of inserting the text.
- datetime: It is used to specify the date and time of the inserted text. The datetime is inserted in the format YYYY-MM-DDThh:mm:ssTZD.
Example 1: This example describe the use of <ins> tag.
html
<!DOCTYPE html> < html > < body > < h1 >GeeksforGeeks</ h1 > < h2 >HTML ins Tag</ h2 > < p > GeeksforGeeks is a < del >mathematical</ del > < ins >computer</ ins > science portal </ p > </ body > </ html > |
Output:
Example 2: This example uses the <ins> tag with the datetime attribute and also use some CSS styles.
html
<!DOCTYPE html> < html > < head > < style > del { color: red; } ins { color: green; } </ style > </ head > < body > < h1 >GeeksforGeeks</ h1 > < h2 >HTML ins Tag</ h2 > < p > GeeksforGeeks is a < del >mathematical</ del > < ins datetime = "2018-11-21T15:55:03Z" > computer </ ins > science portal </ p > </ body > </ html > |
Output:
Supported Browsers:
- Google Chrome
- Edge 12
- Internet Explorer
- Firefox 1
- Opera
- Safari
Please Login to comment...