Создайте выражение с помощью MathML, как показано на рис. 1.
Рис. 1
<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="utf-8">
<title>MathML</title>
<style>
math {
font-size: 1.2em; /* Размер текста */
}
.d {
color: blue; /* Цвет */
}
</style>
</head>
<body>
<p>Решите в уме:</p>
<math display="block">
<mfrac>
<mrow>
<msup>
<mn>7</mn>
<mn class="d">18</mn>
</msup>
<mo>·</mo>
<msup>
<mn>7</mn>
<mn class="d">4</mn>
</msup>
</mrow>
<mrow>
<msup>
<mn>7</mn>
<mn class="d">21</mn>
</msup>
</mrow>
</mfrac>
</math>
</body>
</html>