Open In App

HTML5 MathML <mi> Tag

The MathML <mi> tag in HTML5 is used as an identifier such as any kind of symbol or function. You can put any statement inside this tag.

Syntax: 



<mi> element </mi>

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

Below example illustrates the MathML <mi> tag in HTML5:



Example:  




<!DOCTYPE html>
<html>
 
<head>
    <title>HTML5 MathML mi tag</title>
    <style>
        mi {
            font-size:25px;
        }
    </style>
</head>
 
<body>
    <center>
        <h1 style="color:green">
            GeeksforGeeks
        </h1>
 
        <h3>HTML5 MathML mi tag</h3>
 
        <math>
            <math>
                <mi mathvariant="bold">
                    GeeksforGeeks
                </mi>
 
                <br>
            </math>
            <math>
                <mi mathvariant="italic">
                    A Computer Science
                    Portal for Geeks
                </mi>
            </math>
        </math>
    </center>
</body>
 
</html>

Output: 

HTML MathML mi Tag

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


Article Tags :