Here we put basic HTML tags

                               Here we put basic HTML tags with the help of example:-

This code we can write in any editor
  Ex:- notepad, adobe dreamweaver, sublime text editor, notepad++ etc.
  Now after write this code on editor we save file with .html extension and after saving this   file we can show output using google chrome, mozilla firefox and internet explorer.

<html>
<head>
<title>Basic HTML Tags</title>

</head>
<body>
 <h1>Hyper Text Mark Up Language</h1>
 <h2>Hyper Text Mark Up Language</h2>
 <h3>Hyper Text Mark Up Language</h3>
 <h4>Hyper Text Mark Up Language</h4>
 <h5>Hyper Text Mark Up Language</h5>
 <h6>Hyper Text Mark Up Language</h6>
  10<sup>th</sup>
   H<sub>2</sub>O
</body>
</html>

Comments

Popular Posts