Создайте выражение с помощью MathML, как показано на рис. 1.
Рис. 1
<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="utf-8">
<title>MathML</title>
</head>
<body>
<p>Сравните две дроби.</p>
<math display="block">
<mfrac>
<mn>1</mn>
<mn>2</mn>
</mfrac>
<mtext>
<select>
<option>=</option>
<option><</option>
<option>></option>
</select>
</mtext>
<mfrac>
<mn>3</mn>
<mn>4</mn>
</mfrac>
</math>
</body>
</html>