

- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
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 Questions & Answers
- How to display ruby annotation in HTML5?
- How to display deleted text in HTML?
- How to draw a text with strokeText() in HTML5?
- How to draw a text with fillText() in HTML5?
- HTML5 Canvas Circle Text
- How to display completion progress of a task in HTML5?
- How to display HTML5 client-side validation error bubbles?
- Autocomplete text input for HTML5?
- Properties to create text using HTML5 Canvas
- How to add text tracks used in media players in HTML5?
- Display video inside HTML5 canvas
- How to use BigDecimal in Ruby?
- How to freeze objects in Ruby?
- How to Handle Exceptions in Ruby
- How to invoke methods in Ruby?
Advertisements