Open In App

HTML5 rp Tag

The <rp> tag in HTML is used to provide parentheses around a ruby main text which defines the information. This tag is used when the browser does not support ruby annotations. Such kind of annotation is used in Japanese publications. It is an optional tag. This tag is used within the <ruby> tag. This tag is new in HTML5.
Syntax: 
 

<rt><rp>[</rp> Explanation... <rp>]</rp></rt>

Example: 
 






<!DOCTYPE html>
 
<html>
 
        <body>
            <h1>GeeksforGeeks</h1>
            <h2><rp> Tag</h2>
            <ruby>GFG:
                <rt>
                    <!-- HTML rp tag starts here -->
                    <rp>[</rp>GeeksforGeeks
                    <rp>]</rp>
                     <!-- HTML rp tag starts here -->
                </rt>
            </ruby>
        </body>
 
</html>                   

Output: 
 



Supported Browsers: 
 

 

Article Tags :