HTML headings tags are defining with the <h1> to <h6> tags. This HTML tags are using headline text.
Example:
<h1>This is a heading text</h1>
<h2>This is a heading text</h2>
<h3>This is a heading text</h3>
HTML paragraphs tags are defined with the <p> tag. and closing tags</p>
Example:
<p>paragraph tags are defining .</p>
<p>This is another paragraph tag.</p>
HTML images tag are defined with the <img> tag. Image tag having lots of attributes . This will discuss another chapter.
Example:
<img src="imagename.jpg" width="104" height="142" />
HTML links are defined with the <a> tag. this is also called anchor tag.
Example:
<a href="http://www.hiscript.com">This is a link</a>