html

HTML TAGS AND EXAMPLES :

HTML is used to develop static web pages. static web pages means which does not contain any input values and it is not changes dynamically.
           HTML stands for hyper text markup language. It is used to develop front end applications.If you are writing html code code must be in between <html> and </html> tags.
 HTML is a case sensitive language,that means if your open one tag in capital letters  unnecessary  to close in capital letter it may be small letters and small and capital mix letters also. 

<body> tag:

This tag is used to show the body part of the web page.

ex:

     <html>
<body>

welcome to HTML

</body>
</html>

<p>paragraph tag :

This tag is used to display the text in paragraph style.

ex:

<html>
<body>



<p>My first paragraph.My first paragraphMy first paragraph.My first paragraph.My first paragraph.My first paragraph.My first paragraph.My first paragraph.My first paragraph.My first paragraph.My first paragraph.My first paragraph.My first paragraph.My first paragraph.My first paragraph..</p>

</body>
</html>

HEADING TAGS:(<h1>,<h2>,<h3>,<h4>,<h5>,<h6>)

<h1>,<h2>,<h3>,<h4>,<h5>,<h6> these are called heading tas, these are used to display the text in different sizes.

ex: 

<html>
<body>

<h1>This is heading 1</h1>
<h2>This is heading 2</h2>
<h3>This is heading 3</h3>
<h4>This is heading 4</h4>
<h5>This is heading 5</h5>
<h6>This is heading 6</h6>

</body>
</html>

Leave a Reply