Open In App

HTML5 | MathML <mtr> Tag

The MathML <mtr> tag is used to create row of a table or the matrices in HTML5. It is similar to <tr> of a table tag.
Syntax: 
 

<mtr attributes="value"> child elements </mtr>

Attributes: It accepts some attributes which are listed below: 
 



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




<!DOCTYPE html>
<html>
  
<head>
    <title>HTML5 MathML mtr tag</title>
</head>
  
<body>
    <center>
        <h1 style="color:green">
            GeeksforGeeks
        </h1>
  
        <h3>HTML5 MathML <mtr> tag</h3>
  
        <math>
            <mi>GeeksforGeeks</mi>
            <mo>=</mo>
            <mtable frame="solid" rowlines="dashed" align="axis 1">
                <mtr mathbackground="green;">
                    <mtd>Course</mtd>
                    <mtd>Fee</mtd>
                </mtr>
                <mtr>
                    <mtd>
                        <mi>C++ STL</mi>
                    </mtd>
                    <mtd>
                        <mi> 1499</mi>
                    </mtd>
                </mtr>
                <mtr>
                    <mtd>
                        <mi>Placement 100 </mi>
                    </mtd>
                    <mtd>
                        <mi>9999 </mi>
                    </mtd>
                </mtr>
                <mtr>
                    <mtd>
                        <mi>DSA Foundation </mi>
                    </mtd>
                    <mtd>
                        <mi>7999</mi>
                    </mtd>
                </mtr>
            </mtable>
        </math>
    </center>
</body>
  
</html>

Output: 
 



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

 


Article Tags :