
- 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 text ruby annotation in HTML5?
Use the <rt> tag to display text ruby annotation. The HTML5 <rt> tag is used for pronunciation of character in ruby annotations. These are for showing pronunciation of East Asian characters.
Example
You can try to run the following code to display text ruby annotation −
<!DOCTYPE html> <html> <head> <title>HTML Rt Tag</title> </head> <body> <ruby> 漢 <rp>(</rp><rt>Kan</rt><rp>)</rp> 字 <rp>(</rp><rt>ji</rt><rp>)</rp> </ruby> </body> </html>
- Related Articles
- How to display ruby annotation in HTML5?
- How to display deleted text in HTML?
- How to draw a text with fillText() in HTML5?
- How to draw a text with strokeText() in HTML5?
- How to display completion progress of a task in HTML5?
- How to display a summary for a given in HTML5?
- How to add text tracks used in media players in HTML5?
- How to display HTML5 client-side validation error bubbles?
- How to create a multiline input control text area in HTML5
- What is Text Annotation and its Types in Machine Learning?
- How to take input in a text widget and display the text in tkinter?
- How to display multiple lines of text in Tkinter Label?
- How to display text in base R plot with outline?
- How to display text Right-to-Left Using HTML?
- How to display text Right-to-Left Using CSS?

Advertisements