Open In App

HTML5 | MathML <msubsup> Tag

The MathML <msubsup> tag in HTML5 is used to print base power and power on any expression. This means Superscript and subscript both can be used at the same time.

Syntax:  



<msubsup> child elements </msubsup>

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

Below example illustrates the MathML <msubsup> tag in HTML5:
Example:  






<!DOCTYPE html>
<html>
 
<head>
    <title>HTML5 MathML msubsup tag</title>
</head>
 
<body>
    <center>
        <h1 style="color:green">
            GeeksforGeeks
        </h1>
 
        <h3>HTML5 MathML <msubsup> tag</h3>
 
        <math>
            <mrow>
                <msubsup>
                    <mo> ∑</mo>
                    <mn> i=1 </mn>
                    <mn> n </mn>
                </msubsup>
                <mo>+</mo>
                <msub>
                    <mi>x</mi>
                    <mn>i</mn>
                </msub>
                <mo>=</mo>
                <mn>?</mn>
            </mrow>
        </math>
    </center>
</body>
 
</html>

Output:  

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

 


Article Tags :