HTML-program 6
Posted On Wednesday, May 20, 2009 at at 12:46 AM by RashedProgram 6:
- Some font style:
<html>
<head>
<title>This is my first webpage</title>
</head>
<body>
<blink>This is blink</blink><br>
<b>This is bold</b><br>
<i>This is italic</i><br>
<u>This is underline</u><br>
<cite>This is citation</cite><br>
<code>This is code style</code><br>
<em>This is emphasis style</em><br>
<s>This is strike through</s> or <strike>This is strike through</strike><br>
<strong> This is strong style</strong><br>
Here 2 is subscript: H<sub>2</sub>O<br>
Here 2 is superscript: (A+B)<sup>2</sup>=A<sup>2</sup>+B<sup>2</sup>+2AB<br>
<tt>It is Tele Type Style</tt><br>
<var>This is variable style</var><br>
This is normal.<big>This is Big</big><br>
This is normal. <small>This is small</small>
</body>
</html>
- It will look like: