HTML <rtc> Tag Last Updated : 12 Jul, 2025 Summarize Comments Improve Suggest changes Share Like Article Like Report The HTML <rtc> tag is used to define the explanation of the ruby annotation which is a small text, attached with the main text. Such kind of annotation is used in Japanese or chinese publications. The <rtc> tag contains the <rt> tag. Note: HTML <rtc> tag is not supported in html5. Syntax: <rtc> statement </rtc> Example 1: It is a basic example of <rtc> tag. html <!DOCTYPE html> <html> <head> <title>HTML &lt;rtc&gt; tag</title> <style> body { text-align: center; } h1 { color: green; } ruby { font-size: 25px; } </style> </head> <body> <h1>GeeksforGeeks</h1> <h2>HTML &lt;rtc&gt; Tag</h2> <ruby> <rtc> <rt>&hearts;</rt> </rtc> </ruby> </body> </html> Output: Example 2: This example does not contain <ruby> tag. html <!DOCTYPE html> <html> <head> <title>HTML &lt;rtc&gt; tag</title> <style> body { text-align: center; } h1 { color: green; } </style> </head> <body> <h1>GeeksforGeeks</h1> <h2>HTML &lt;rtc&gt; Tag</h2> <rtc> <rt>GeeksforGeeks Contents</rt> </rtc> </body> </html> Output: Supported Browsers: Google Chrome 5.0Internet Explorer 5.5Firefox 38.0Opera 15.0Safari 5.0 Comment More infoAdvertise with us Next Article HTML Tag S skyridetim Follow Improve Article Tags : Web Technologies HTML HTML-Tags Similar Reads HTML5 <ruby> Tag The <ruby> tag in HTML is used to specify the ruby annotation which is a small text, attached with the main text to specify the meaning of the main text. This kind of annotation is used in Japanese publications.Syntax: <ruby attributes> Contents... </ruby>Note: <ruby> tag con 2 min read HTML5 <ruby> Tag The <ruby> tag in HTML is used to specify the ruby annotation which is a small text, attached with the main text to specify the meaning of the main text. This kind of annotation is used in Japanese publications.Syntax: <ruby attributes> Contents... </ruby>Note: <ruby> tag con 2 min read HTML <html> Tag HTML is a language full of diverse elements, and one such element is the <html> tag. This tag, standing for âHyperText Markup Languageâ, is used to define the root of an HTML or XHTML document.It serves as the main container for all other HTML elements, excluding the <!DOCTYPE> declarati 3 min read HTML <html> Tag HTML is a language full of diverse elements, and one such element is the <html> tag. This tag, standing for âHyperText Markup Languageâ, is used to define the root of an HTML or XHTML document.It serves as the main container for all other HTML elements, excluding the <!DOCTYPE> declarati 3 min read HTML <link> Tag The HTML <link> tag defines the relationship between the current document and an external resource, often for stylesheets or favicons. It's an empty element with attributes like href and rel.Note: The <link> tag also supports the Global Attributes and  Event Attributes in HTML.Syntax 2 min read HTML <link> Tag The HTML <link> tag defines the relationship between the current document and an external resource, often for stylesheets or favicons. It's an empty element with attributes like href and rel.Note: The <link> tag also supports the Global Attributes and  Event Attributes in HTML.Syntax 2 min read Like