Open In App

HTML5 MathML <merror> Tag

The HTML5 MathML <merror> tag tag is an inbuilt element in HTML5 which is used to wrap the expression in a box, makes that expression eye-catching. This tag is used to display the error message. Normally it alone can’t just pop out when your MathML markup is wrong or any kind of error occurs, you will get an XML parsing. 

Syntax: 



<merror> child elements </merror>

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

Below example will illustrates the concept of HTML5 <merror> tag:



Example: 




<!DOCTYPE html>
<html>
 
<head>
    <title>HTML5 MathML merror tag</title>
</head>
 
<body style="text-align:center;">
 
    <h1 style="color:green">GeeksforGeeks</h1>
    <h3>HTML5 MathML merror tag</h3>
 
    <math>
        <merror mathbackground="yellow">
            <mtext mathcolor="red">
                Pythagoras Equation:
            </mtext>
            <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>
        </merror>
    </math>
    <p>
        This tag is use to display the
        error in any expression
    </p>
</body>
 
</html>

Output:

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


Article Tags :