Inserted Tag In Html
Inserted Text Anything that appears within <ins>...</ins> element is displayed as inserted text .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.
Attributes: The <ins> tag have two attributes which are given below:
- 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.
- cite: It is used to specify the URL of the
document or message which denotes the reason of inserting the text.
Example:
<!DOCTYPE
html> <html>
<head>
<title>Inserted
Text Example</title> </head>
<body>
<p>Welcome
To <del>launchpadlwd</del> <ins>blog</ins></p> </body>
</html> |
0 Comments
Please do not enter any spam links in the comment box