
- 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 mark work title using cite tag in HTML?
Work title can be the title for a book, a song, a painting, a movie, etc.
We use <cite> tag, to mark work title in HTML. The <cite> tag indicates citation and whatever comes inside the tag represents work title for specified thing on we page.
Syntax
Following is the syntax for the <cite> tag.
<cite> Work title</cite>
Example
Following is example program for the <cite> tag.
<!DOCTYPE html> <html> <head> <title>HTML cite tag</title> </head> <body> <h1>Heading</h1> <p> Learn Java from <cite>Java The Complete Reference</cite> by Herbert Schildt. </p> </body> </html>
Example
Following is another example program for the <cite> tag.
<!DOCTYPE html> <html> <head> </head> <body> <p>DLF stands for <cite>Delhi Land and Finance</cite></p> <p>Delhi Land and Finance is one of the largest commercial real estate developer in India.</p> </body> </html>
Example
Following is one more example program for the <cite> tag.
<!DOCTYPE html> <html> <head> <title>HTML blockquote tag</title> <style> blockquote { margin-left: 0; } </style> </head> <body> <h1>Drupal official website</h1> <p>Here is a quotation from Drupal’s official website</p> <blockquote cite="http://drupal.org">The Drupal project is open source software. Anyone can download, use, work on, and share it with others. It's built on principles like collaboration, globalism, and innovation.</blockquote> </body> </html>
- Related Articles
- How to use title tag in HTML Page?
- How to use the tag to define HTML document title?
- How to add a title in anchor tag using jQuery?
- HTML cite Attribute
- HTML cite Attribute
- HTML cite Attribute
- HTML cite Attribute
- HTML DOM cite object
- How to create navigation bar using div tag in HTML?
- How to Select Multiple Files using HTML Input Tag?
- How to draw a circle using an SVG tag in html?
- How to mark deleted text in HTML?
- How to mark strikethrough text in HTML?
- How to mark inserted text in HTML?
- How to mark text superscript in HTML?

Advertisements