Open In App

HTML5 | MathML <msqrt> Tag

Last Updated : 22 Aug, 2021
Comments
Improve
Suggest changes
Like Article
Like
Report

The MathML <msqrt> tag in HTML5 is use to display the root squire of the element content.


Syntax:  

<msqrt> Element contents </msqrt>


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

  • class|id|style: This attribute is used to hold the styles of the child elements.
  • mathbackground: This attribute holds the value of the math expressions background color.
  • href: This attribute used to hold any hyperlink to a specified URL.
  • mathcolor: This attribute holds the color of the math expressions.


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

html
<!DOCTYPE html>
<html>

<head>
    <title>HTML5 MathML msqrt tag</title>
</head>

<body style="text-align:center;">
    
    <h1 style="color:green">GeeksforGeeks</h1>
    
    <h3>HTML5 MathML &lt;msqrt&gt; tag</h3>
    
    <math>
        <msqrt>
            <mi>GeeksforGeeks</mi>
        </msqrt>
        <mo>=</mo>
        <mtext>Geeks</mtext>
    </math>
</body>

</html>            

Output:  


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

  • Firefox
  • Safari
     

Next Article

Similar Reads