HTML - Rt Tag



Description

The HTML <rt> tag is used for pronunciation of character in ruby annotations. These are for showing pronunciation of East Asian characters.

Example

<!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>

This will produce the following result −

Global Attributes

This tag supports all the global attributes described in − HTML Attribute Reference

Event Attributes

This tag supports all the event attributes described in − HTML Events Reference

Browser Support

Chrome Firefox IE Opera Safari Android
Yes Not Supported Yes Not Supported Yes Yes
html_tags_reference.htm
Advertisements