HTML CSS examples for HTML Tag:ins
The cite attribute sets a URL to a document to explain why the text was inserted/changed.
The cite attribute has no visual effect, but can be used by screen readers.
Value | Description |
---|---|
URL | Specifies the URL to the document that explains why the text was inserted/changed. |
An inserted text, with a URL to a document that explains why the text was inserted:
<!DOCTYPE html> <html> <body> <p>This is a text. <ins cite="http://java2s.com/">This is an inserted text.</ins></p> </body><!-- ww w.j a v a 2 s . c o m--> </html>