HTML Basic

Headings in HTML :

HTML headings are identified with the <h1> to <h6> tags.
 for Example:
<h1>This is a heading</h1>
<h2>This is a heading</h2>
<h3>This is a heading</h3>

Paragraphs in HTML :

HTML paragraphs are explained with the <p> tag.
for Example :
<p>This is a paragraph.</p>
<p>This is another paragraph.</p>


Links in HTML :



HTML hyperlinks are identified with the <a> tag.
for Example:

<a href="http://www.vivekbarot.com">This is a link</a>






Images in HTML :




HTML pictures are described with the <img> tag.
for Example:
<img src="vivekbarot.jpg" width="110" height="134">






Example Of HTML Document:




<!DOCTYPE html>

<html>

<body>

<p>This is my first paragraph.</p>

</body>

</html>





Explanation Of Example:


The <p> factor becomes a paragraph in the HTML document.The factor has a start draw <p> and a conclusion draw </p>. The factor material is: This is my first paragraph.
The aspect describes your body of the HTML document.
The aspect includes a begin draw and a conclusion draw ;.
The aspect material is still another HTML aspect (a p element).
The  aspect identifies the entire HTML document.
The aspect has a start label and a finish label ;.
The aspect content is still another HTML aspect (the body element).

Leave a Reply

Your email address will not be published. Required fields are marked *