
- HTML Tutorial
- HTML - Home
- HTML - Overview
- HTML - Basic Tags
- HTML - Elements
- HTML - Attributes
- HTML - Formatting
- HTML - Phrase Tags
- HTML - Meta Tags
- HTML - Comments
- HTML - Images
- HTML - Tables
- HTML - Lists
- HTML - Text Links
- HTML - Image Links
- HTML - Email Links
- HTML - Frames
- HTML - Iframes
- HTML - Blocks
- HTML - Backgrounds
- HTML - Colors
- HTML - Fonts
- HTML - Forms
- HTML - Embed Multimedia
- HTML - Marquees
- HTML - Header
- HTML - Style Sheet
- HTML - Javascript
- HTML - Layouts
- HTML References
- HTML - Tags Reference
- HTML - Attributes Reference
- HTML - Events Reference
- HTML - Fonts Reference
- HTML - ASCII Codes
- ASCII Table Lookup
- HTML - Color Names
- HTML - Entities
- HTML - Fonts Ref
- HTML - Events Ref
- MIME Media Types
- HTML - URL Encoding
- Language ISO Codes
- HTML - Character Encodings
- HTML - Deprecated Tags
HTML cite Attribute
The cite attribute of the <ins> element is used to set a URL that specified the reason to insert the text. Following is the syntax −
<ins cite="url">
Above, we have set url, which is the address to the document explaining the reason to insert the text. Let us now see an example to implement the cite attribute of the <ins> element −
Example
<!DOCTYPE html> <html> <body> <h1>Demo Heading</h1> <ins cite="new.htm">Text is inserted.</ins> </body> </html>
Output
In the above example, we have inserted a text using the <ins> element −
<ins cite="new.htm"> Text is inserted. </ins>
Above, we have set the reason of insertion using the cite attribute −
cite="new.htm
- Related Articles
- HTML DOM ins cite Property
- HTML cite Attribute
- HTML cite Attribute
- HTML cite Attribute
- HTML DOM Ins Object
- HTML DOM cite object
- HTML DOM ins dateTime Property
- HTML DOM del cite Property
- HTML DOM blockquote cite Property
- How to mark work title using cite tag in HTML?
- HTML pattern Attribute
- HTML novalidate Attribute
- HTML maxlength Attribute
- HTML wrap Attribute
- HTML disabled Attribute

Advertisements