Open In App

HTML5 MathML <mo> Tag

The MathML <mo> tag in HTML5 is used print operator between elements. Any kind of mathematical operator can be used by this tag.

Syntax:  



<mo> operator </mo>

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

Below example illustrates the concept of HTML5 MathML <mo> tag:



Example:  




<!DOCTYPE html>
<html>
 
<head>
    <title>HTML5 MathML mo tag</title>
</head>
 
<body style="text-align:center;">
 
    <h1 style="color:green">
        GeeksforGeeks
    </h1>
 
    <h3>HTML5 MathML mo Tag</h3>
 
    <math>
        <mrow>
            <mrow>
                <msup>
                    <mi>x</mi>
                    <mn>2</mn>
                </msup>
                <mo>+</mo>
                <msup>
                    <mi>y</mi>
                    <mn>2</mn>
                </msup>
            </mrow>
            <mo>=</mo>
            <msup>
                <mi>z</mi>
                <mn>2</mn>
            </msup>
        </mrow>
    </math>
</body>
 
</html>

Output: 

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


Article Tags :