HTML5 MathML rquote Attribute

Last Updated : 23 Jul, 2025

This attributes holds the opening quote that depends on the dir attribute and the default value is the ". This attribute is accepted by <ms> tag only.

Syntax:

<element rquote="quote">

Attribute values:

  • quote: This value can be any closing quote.

Example: Below example illustrates the rquote in HTML5 MathML.

HTML
<!DOCTYPE html> 
<html> 

<body style="text-align:center;"> 
    
    <h1 style="color:green">GeeksforGeeks</h1>    
    <h3>HTML5 MathML rquote Attribute</h3> 
    
    <math> 
        <ms lquote="„" rquote=" “" mathcolor="Yellow"
                mathbackground="Purple"> 
            A Computer Science Portal for Geeks
        </ms> 
    </math> 
</body> 

</html> 

Output:

Supported Browsers: The browsers supported by HTML5 MathML rquote attribute are listed below:

  • Firefox
Comment