
- 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
How to display a URL which explains the quote/deleted/inserted text in HTML?
The cite attribute allows you to add URL and explain why the text was deleted or inserted.
Example
You can try to run the following code to implement cite attribute −
<!DOCTYPE html> <html> <body> <h3>Define WordPress</h3> <q cite = "https://wordpress.org/"> WordPress is open source software you can use to create a beautiful website, blog, or app.</q> </body> </html>
- Related Articles
- How to display deleted text in HTML?
- How do we display inserted text in HTML?
- How to mark deleted text in HTML?
- How to mark inserted text in HTML?
- How to display a single quote text as a column value in MySQL?
- How do we display a text area in HTML?
- Display strikethrough text in HTML
- Display subscripted text in HTML
- How to display text Right-to-Left Using HTML?
- How do we display the visible width of a text area in HTML?
- How do we include the direction of text display in HTML?
- HTML DOM Quote Object
- Java Program to display double and single quote in a string
- How to include an alternate text when the original element fails to display in HTML?
- How to build a random quote generator using HTML, CSS, and JavaScript?

Advertisements