ins cite Attribute - HTML CSS HTML Tag

HTML CSS examples for HTML Tag:ins

Description

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.

Attribute Values

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:

Demo Code

ResultView the demo in separate window

<!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>

Related Tutorials