Designing Of Web Pages

Tutorials

Designing Of Web Pages

BASIC IMPORTANT TAGS


There are some tags in HTML that allows to perform basic formatting of the text in a HTML document.
  1. Bold Tag :

    <B> is used to bold the text on the web page. open notepad and type HTML code.
  2. Italic Tag :

    The tag <I> is used in HTML to get the italic effect on the web page.
  3. Underline Tag :

    We are using <U> for underline the text in the web page.


<HTML>
<HEAD>
<TITLE> TAGS </TITLE>
</HEAD>
<BODY>
<B> THIS IS USE FOR BOLD.</B> </BR>
<I> THIS IS USE FOR ITALIC.</I> </BR>
<U> THIS IS USE FOR UNDERLINE.</U>
</BODY>
</HTML>


For Example Save Page as : tags.html


Output




THIS IS USE FOR BOLD.
THIS IS USE FOR ITALIC.
THIS IS USE FOR UNDERLINE.
  • Headings :

    The header tags are used in HTML document to display heading. Header tags are used to manipulate the size of the heading for example- they make your heading larger or smaller acording to the tag used.
    There are six type of heading in HTML form H1 to H6. H1 is the highest size and H6 is a smaller size.Open your notepad and Type HTML code.

    <HTML>
    <HEAD>
    <TITLE> HEADINGS LEVEL </TITLE>
    </HEAD>
    <BODY>
    <H1> THIS IS THE FIRST LEVEL</H1>
    <H2> THIS IS THE SECOND LEVEL</H2>
    <H3> THIS IS THE THIRD LEVEL</H3>
    <H4> THIS IS THE FOURTH LEVEL</H4>
    <H5> THIS IS THE FIFTH LEVEL</H5>
    <H6> THIS IS THE SIXTH LEVEL</H6>
    </BODY>
    </HTML>


For Example Save Page as : heading.html


Output




THIS IS THE FIRST LEVEL
THIS IS THE SECOND LEVEL
THIS IS THE THIRD LEVEL
THIS IS THE FOURTH LEVEL
THIS IS THE FIFTH LEVEL
THIS IS THE SIXTH LEVEL



Previous


No comments:

Post a Comment