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:
- class|id|style: This attribute is used to hold the styles of the child elements.
- href: This attribute is used to hold any hyperlink to a specified URL.
- mathbackground: This attribute holds the value of the math expressions background color.
- mathcolor: This attribute holds the color of the math expressions.
- dir: This attributes holds the direction value. Two types of direction values are acceptable ltr from left to right and rtl from right to left.
- mathsize: This attribute holds the value of the size for the content. The possible values are small, medium and big.
- mathvariant: This attribute holds variety of typography like font-family.
Below example illustrates the MathML <mi> tag in HTML5:
Example:
html
<!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:
Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape,
GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out -
check it out now!
Last Updated :
07 Jul, 2023
Like Article
Save Article