HTML design with it's Tags

                                                        HTML tags and It's Uses are :-
1. HTML :- It specifies this file are HTML file.
2. HEAD :-  In Head section we specify Title of our Document, CSS scripts, JAVA scripts and                                 Styles.This all types declared in Head Section.
3. BODY :- In BODY section we describe document's body. In body elements we defines all HTML                        tags. For EX:- lists, Hyperlinks, Image, Tables etc.

The next tag of HTML files are :-
<h1>.................</h1>
<h2>.................</h2>
<h3>.................</h3>
<h4>.................</h4>
<h5>.................</h5>
<h6>.................</h6>

 These tags shows 6 different headings from font size maximum to minimum.
 For Ex:-
 <html>
   <head>
    <title>  This page shows HTML headings </title>
  </head>
   <body>
     <h1> This shows Heading 1</h1>
     <h2> This shows Heading 2</h2>
     <h3> This shows Heading 3</h3>
     <h4> This shows Heading 4</h4>
     <h5> This shows Heading 5</h5>
     <h6> This shows Heading 6</h6>
   </body>
</html>

Enjoy this Task and enjoy the  output.

Comments

Popular Posts