HTML CSS examples for HTML Tag:ins
ins element marks Added Content.
The ins Element summary
Item | Value |
---|---|
Element | ins |
Local Attributes | cite, datetime |
Tag Style | Start and end tag |
New in HTML5 | Yes |
Changes in HTML5 | N/A |
Style Convention
ins {
text-decoration: underline;
}
The cite attribute specifies a URL to a document that explains why the text was added.
The datetime attribute specifies when the modification was made.
You can see the ins element in use in the following code.
<!DOCTYPE html> <html> <head> <title>Example</title> </head> <body> <p> <ins>I can do the HTML.</ins> </p> </body><!--from w ww .j a va 2s . c om--> </html>