programming-examples/html/Text/sup_sub_text.html

11 lines
181 B
HTML
Raw Normal View History

2019-11-15 12:59:38 +01:00
<!DOCTYPE html>
<html>
<head>
<title>Html5</title>
<meta charset="UTF-8">
</head>
<body>
(a + b)<sup>2</sup> = a<sup>2</sup> + 2ab + b<sup>2</sup><br>
H<sub>2</sub>O
</body>
</html>