Open In App

HTML5 MathML <mglyph> Tag

The MathML <mglyph> tag in HTML5 is used to print non-standard symbols. It is used only for those characters or symbols that are not available on Unicode characters.

Syntax:



<mglyph src="pathe" alt="" width="value" height="value"/>

Attributes:

This tag accepts some attributes which are listed below:



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

Example:




<!DOCTYPE html>
<html>
 
<head>
    <title>HTML5 MathML mglyph tag</title>
</head>
 
<body>
    <center>
        <h1 style="color:green">
            GeeksforGeeks
        </h1>
         
        <h3>HTML5 MathML mglyph tag</h3>
         
        <math>
            <mi>
                <mglyph src="glyph.png"
                        alt="glyph"
                        width="20px"
                        height="10px" />
            </mi>
        </math>
    </center>
</body>
 
</html>

Output:

Supported Browsers:

This tag is not supported by any browsers.


Article Tags :