
- 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 specify citation in HTML?
Use the <cite> tag in HTML to specify citation. Cite can be defined as the title of a work. You can try to run the following code to implement <cite> tag for adding citation −
Example
<!DOCTYPE html> <html> <head> <title>HTML cite Tag</title> </head> <body> <p>The learning content can be referred from <cite>Data Structures & Algorithms in Java</cite><p> </body> </html>
- Related Articles
- How to specify a minimum value in HTML?
- How to specify the kind of text track in HTML?
- How to specify a unique id for an element in HTML?
- How to specify that the element is read-only in HTML?
- How to specify the number of visible options for in HTML?
- How to specify that an element is not yet relevant in HTML?
- How to specify the HTML content of the page to show in the <iframe> in HTML?
- How to specify the language of the element's content in HTML?
- How to specify an image as a client-side image-map in HTML?
- How to specify the HTTP method to use when sending form-data in HTML?
- How to specify that the details should be visible to the user in HTML?
- How to specify the URL of the page the link goes to in HTML?
- How to specify the URL of the image to use in different situations in HTML?
- How to specify which form element a calculation is bound to with HTML?
- How to specify whether the or the element should have autocomplete enabled in HTML?

Advertisements