HTML Basic Tag List with Example
When you learn beginners HTML, It's important to have a basic HTML tags understanding. Here all Basic HTML tags are listed to help you learn.
HTML Paragraph Tag
Defines a paragraph into web document. HTML paragraph define using <p> tag.
<body>
<p> This is first Paragraphs </p>
<p> This is Second Paragraphs </p>
</body>
HTML Comment Tag
Defines the Comments <!-- Your Comment --> tag.
<body>
<img src="../../images/w2t.png" width="380" height="70" /> <!--Image file-->
</body>
HTML Images Tag
To display images into web document. HTML Images are define inside the <img /> tag.
<body>
<img src="../../images/w2t.png" width="380" height="70" />
</body>
HTML Link Tag
Defines the Link in internal or External document. HTML Link are defined inside the <a> tag.
<body>
<a href="http://www.way2tutorial.com">Web Development Tutorial</a>
</body>
HTML Headings Tags
Defines the Heading <h1> to <h6> tags.
<body>
<h1>Heading h1</h1>
<h2>Heading h2</h2>
<h3>Heading h3</h3>
<h4>Heading h4</h4>
<h5>Heading h5</h5>
<h6>Heading h6</h6>
</body>