How do I write a fraction in HTML codes?
How do we write a fraction in HTML codes? if you want to write a fraction code in HTML then you can write a fraction code using span tag and subtag.
Inside the span tag, you can write which number you want to display on the browser.
And, Add <sub></sub> code for numerator and <sub></sub> code for the denominator.
Let's see the code:
<!DOCTYPE html>
<html>
<head>
<title>this is title</title>
</head>
<body>
<div class="frac">
<span>1</span>
<span class="symbol">/</span>
<span class="bottom">2</span>
</div>
</body>
</html>
Using <sub></sub> tag:
<!DOCTYPE html>
<html>
<head>
<title>this is title</title>
</head>
<body>
<div class="frac">
<span class="frac"><sup>12</sup><span>/</span><sub>256</sub></span>
</div>
</body>
</html>
I hope it helps you
Comments
Post a Comment