Loading...
HTML <rp> Tag

HTML <rp> Tag

In this tutorial, we will learn about rp tag in HTML with the help of examples.


<rp> Tag

Rp tag <rp> is used to specifies to show browsers that do not support the ruby annotations.

Note : Ruby annotations are character that needs ans explanation/pronunciation.

Syntax

<rp>.........</rp>

Example

<!DOCTYPE html>
<html>
  <head>
    <title>Rp Tag</title>
  </head>
  <body>
    <ruby>
      相信 <rp>(</rp><rt>Trust</rt><rp>)</rp>
    </ruby>
  </body>
</html>

Output

相信 (Trust)

Global Attribute

Rp Tag support all the global attributes of HTML.


Event Attribute

Rp Tag support all the event attributes of HTML.


Next Tutorial

We hope that this tutorial helped you develop better understanding of the concept of <rp> tag in HTML.

Keep Learning : )

In the next tutorial, you'll learn about HTML <rt> Tag.

- Related Topics