HTML Webpage Example
HTML Webpage Example
<!DOCTYPE html>
<html>
<head>
<title>Example1.html</title>
</head>
<body style="background-color: pink;">
<p>
<b>STRIKE Tag</b> - It puts a line right through the centre of the text,
crossing it out<br>
For Example :- <strike>Cancel</strike>
</p>
<p>
<b><span style="color: green;">SUPERSCRIPT Tag</span></b> - The matter within
this pair of tags will appear as superscript.<br>
For Example :- A<sup>2</sup> + B<sup>2</sup>
</p>
<p>
<b><span style="color: blue;">SUBSCRIPT Tag</span></b> - The matter within this
pair of tags will appear as subscript.<br>
For Example :- H<sub>2</sub>O
</p>
</body>
</html>