Render division HTML



Whiile it is possible to render mathematical division html using some complex table html code, is is very easy to do so using mathjax. To render division you use frac keyword. The \frac is followed by the two expressions enclosed in curly brackets . Take a look at the following example.


<html>
<head>
<title>Reference Rendering division in HTML </title>
<script type="text/javascript"
  src="http://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML">
</script>

</head>
<body>
This is how we render division / fraction in html

$$x = \frac{8 + 6.4}{48 +4.9}$$
</body>
</html>



Try this example here. and see how square root works