Open In App

HTML5 rp Tag

Last Updated : 20 Apr, 2023
Improve
Improve
Like Article
Like
Save
Share
Report

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: 
 

HTML




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

  • Google Chrome 5.0
  • Edge 79.0
  • Internet Explorer 5.0
  • Firefox 38.0
  • Opera 15.0
  • Safari 5.0

 


Like Article
Suggest improvement
Previous
Next
Share your thoughts in the comments

Similar Reads