files/en-us/web/html/reference/elements/rt/index.md
The <rt> HTML element specifies the ruby text component of a ruby annotation, which is used to provide pronunciation, translation, or transliteration information for East Asian typography. The <rt> element must always be contained within a {{HTMLElement("ruby")}} element.
{{InteractiveExample("HTML Demo: <rt>", "tabbed-shorter")}}
<ruby>
漢 <rp>(</rp><rt>kan</rt><rp>)</rp> 字 <rp>(</rp><rt>ji</rt><rp>)</rp>
</ruby>
ruby {
font-size: 2em;
}
See the article about the {{HTMLElement("ruby")}} element for more examples.
This element only includes the global attributes.
This example provides Romaji transliteration for the kanji characters within the {{HTMLElement("ruby")}} element:
<ruby> 漢 <rt>Kan</rt> 字 <rt>ji</rt> </ruby>
body {
font-size: 22px;
}
{{EmbedLiveSample("Using_ruby_annotations", 600, 60)}}
{{Specifications}}
{{Compat}}