Open In App

HTML5 | MathML <mroot> Tag

The MathML <mroot> tag in HTML5 is use to display the power of the root like root squire.
Syntax: 
 

<mroot> child elements </mroot>

Attributes: This tag accepts some attributea which are listed below: 
 



Below example will illustrates the concept of HTML5 MathML <mroot> tag:
Example: 
 




<!DOCTYPE html>
<html>
 
<head>
    <title>HTML5 MathML mroot tag</title>
</head>
 
<body style="text-align:center;">
     
    <h1 style="color:green">GeeksforGeeks</h1>
     
    <h3>HTML5 MathML <mroot> tag</h3>
     
    <math>
        <mroot>
            <mi>Geeks</mi>
            <mn>Geeks</mn>
        </mroot>
        <mo>=</mo>
        <mtext>GeeksGeeks</mtext>
    </math>
</body>
 
</html>

Output: 
 



Supported Browsers: The browsers supported by HTML5 MathML <mroot> tag are listed below: 
 

 

Article Tags :