Basic Tags in Html
Bold Italic Underline Superscript and Subscript Tag
<html>
<head>
<title>
My first web page
</title>
</head>
<body>
Welcome to Compuhelp<br>
<b>Welcome to Compuhelp</b><br>
<i>Welcome to Compuhelp</i><br>
<u>Welcome to Compuhelp</u><br>
<strike>Welcome to Compuhelp</strike><br>
H<sub>2</sub>O<br>
(a+b)<sup>2</sup><br>
<pre>
Welcome to Compuhelp
Thanks to join compuhelp
</pre>
</body>
</html>