007. MathML Tutorial
The HTML syntax of HTML5 allows for MathML elements to be used inside a document using <math>...</math> tags. Most of the web browsers can display MathML tags. If your browser does not support MathML, then I would suggest you to use latest version of Firefox. You can check W3 Specification for MathML at MathML 2.0 Specification . MathML Examples: Following is a valid HTML5 document with MathML: <!doctype html> <html> <head> <meta charset="UTF-8"> <title>Pythagorean theorem</title> </head> <body> <math xmlns="http://www.w3.org/1998/Math/MathML"> <mrow> <msup><mi>a</mi><mn>2</mn></msup> <mo>+</mo> <msup><mi>b</mi><mn>2</mn></msup> <mo>=</mo> <msup><mi>c</mi><mn>2</mn></msup> </mrow> </ma...