Computer Science, asked by tannu7393, 1 year ago

um
uny (WU popular weu VIUWSTIS.
6CO2 + 6H20-→CH 206 +602
To display above given chemical expression on a webpage, following HTML code was
written :
6CO<sup>2</sup> + 6H<sup>2</sup>O-
C<sup>®</sup>H<sup>12</sup>O<sup>6</sup> + 60<sup>2</sup>
But its not displaying the expression in desired format. Identify the fault(s) and suggest
the required correction(s).

Answers

Answered by siddhartharao77
4

Sample Code:

<html>

<head>

<title>Super and Sub script</title>

</head>

<body>

<p>6CO<sub>2</sub> + 6H<sub>2</sub>O -> CH<sub>12</sub>O<sub>6</sub> + 6O<sub>2</sub></p>

</body>

</html>

Hope it helps

Similar questions