Introduction
- <math xmlns="http://www.w3.org/1998/Math/MathML"> </math>

- <!DOCTYPE html>
- <html>
- <head
- <title>Experiments with MathML in HTML5</title>
- </head>
- <body>
- <h3>Experiments with MathML in HTML5</h3>
- <math>
- <mrow>
- <msup><mi>a</mi><mn>2</mn></msup>
- <mo>=</mo>
- <msup><mi>b</mi><mn>2</mn></msup>
- </mrow>
- </math>
- </body>
- </html>
- <!DOCTYPE html>
- <html>
- <head><style>
- table {
- border-collapse: collapse;
- }
- table, td {
- border: 1px solid black;
- }</style>
- <title>Experiments with MathML in HTML5</title>
- </head>
- <body>
- <h3>Experiments with MathML in HTML5</h3>
- <table><tr><td>
- A<sub>B</sub> =C<sup>D</sup>
- </td><td>
- <math>
- <msub>
- <mi>A</mi>
- <mn>B</mn>
- </msub>
- <mo>=</mo>
- <msup>
- <mi>C</mi>
- <mn>D</mn>
- </msup>
- </math></td></tr></table>
- </body>
- </html>

A fraction is generated by the element <mfrac>. For example, A/B is generated by:
- <math>
- <mfrac>
- <mi>A</mi>
- <mi>B</mi>
- </mfrac>
- </math>
- <math>
- <msqrt>
- <mfrac>
- <mi>A</mi>
- <mi>B</mi>
- </mfrac>
- </msqrt>
- </math>
- <mfenced open="[" close="]">
- <mtable>
- <mtr>
- <mtd>
- <mi>2</mi>
- </mtd>
- <mtd>
- <mi>4</mi>
- </mtd>
- <mtd>
- <mi>4</mi>
- </mtd>
- </mtr>
- <mtr>
- <mtd>
- <mi>5</mi>
- </mtd>
- <mtd>
- <mi>6</mi>
- </mtd>
- <mtd>
- <mi>1</mi>
- </mtd>
- </mtr>
- <mtr>
- <mtd>
- <mi>6</mi>
- </mtd>
- <mtd>
- <mi>4</mi>
- </mtd>
- <mtd>
- <mi>2</mi>
- </mtd>
- </mtr>
- </mtable>
- </mfenced>

- <math displaystyle="true">
- <munderover >
- <mo>∑</mo>
- <mrow>
- <mi>n</mi>
- <mo>=</mo>
- <mn>1</mn>
- </mrow>
- <mi>∞</mi>
- </munderover>
- <mfrac>
- <mn>
- <mi>n</mi>
- <mo>+</mo>1
- </mn>
- <mi>n</mi>
- </mfrac>
- </math>

- <munderover>
- <mo>∫</mo>
- <mn>1</mn>
- <mn>e</mn>
- </munderover>
- <mfrac>
- <mrow>
- <mo>d</mo>
- <mi>x</mi>
- </mrow>
- <mi>x</mi>
- </mfrac>
- <mo>=</mo>
- <mn>1</mn>

Conclusion
In this article, we studied MathML With HTML5

Gowtham RajamanickamPosted Apr 1, 2015, 8:55 AM
good one..
Abhijeet SinghPosted Apr 1, 2015, 4:32 AM
nice article
Vithal WadjePosted Mar 31, 2015, 2:15 PM
nice
Abhishek JaiswalPosted Mar 31, 2015, 12:20 PM
A world of HTML5.. great! :)
Karthik Muthu KaruppanPosted Mar 31, 2015, 10:56 AM
good one
Tom MohanPosted Mar 31, 2015, 9:17 AM
Thanks for sharing.. useful
Praveen KumarPosted Mar 31, 2015, 7:58 AM
fabulous featureRatnesh Singh
Gowtham RajamanickamPosted Mar 31, 2015, 6:02 AM
amazing..
Gaurav Kumar AroraPosted Mar 31, 2015, 5:48 AM
Good one! Is HTML5 support complex equations too?
Mahesh ChandPosted Mar 31, 2015, 4:39 AM
Nice! Is this developed by HTML5 committee?
Sanjay SinghPosted Mar 31, 2015, 3:07 AM
nice one sir !!!
NitinPosted Mar 31, 2015, 3:04 AM
informative