Open In App

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 contains two other tags which are listed below: 
 



Example: 
 




<!DOCTYPE html>
<html>
 
        <body>
 
            <h1>GeeksforGeeks</h1>
            <h2><ruby> Tag</h2>
            <!-- html ruby tag is used here -->
            <ruby>GFG<rt>GeeksforGeeks</rt></ruby>
             
        </body>
 
</html>

Output: 
 



Supported Browsers: 
 

 

Article Tags :