Создайте выражение с помощью MathML, как показано на рис. 1.
Рис. 1
<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="utf-8">
<title>MathML</title>
</head>
<body>
<p>Решите уравнение:</p>
<math display="block">
<msqrt>
<mrow>
<mi>x</mi>
<mo>+</mo>
<mn>3</mn>
</mrow>
</msqrt>
<mo>=</mo>
<mroot>
<mrow>
<mn>4</mn>
<mi>x</mi>
<mo>+</mo>
<mn>12</mn>
</mrow>
<mn>3</mn>
</mroot>
</math>
</body>
</html>