Friday, October 17, 2014

Write A Html code to Demonstrate <b><u><i><strike><tt><sub><sup>tag.


Write A Html code to Demonstrate <b><u><i><strike><tt><sub><sup>tag
. Code :formatting.html

<html>
<head>
<title>example of B_U_I_Strike_Tt_Sub_Suptag</title>
</head>
<body text=”purple”>
<b>This is Bold </b><br />
<u>This is underline </u><br />
<i>This is italic</i><br />
<strike>This is strike</strike><br />
<tt>This is tt font</tt><br />
Using sub script h<sub>2</sub>o <br />
using super script 2<sup>2</sup> = 4
</body>
</html>

No comments: