Sunday, 5 October 2014

which are the tags use in html ?

There are many tags are available to create HTML page.

E.g <a> is use for providing a link.
Like we can make a reference link of any text.

For example:
<a href = "WWW.Google.com">open Google</a>

Now, If we can click on "open Google" text then Google home page will be opened.


Then another tag <br/> is use...
That tag is use to go to next line..for exmaple you want to display a simple page with hello, how are you contain in different different line then you can use <br/> tag after hello, so "hello" will be display first and than "how are you" will be display in next line..

Another are text formating tags..
Like <b> tag for making a text bold style.
Then <i> tag for making a text italic style.
Then <u> tag use for underlying the the text.

Sunday, 3 August 2014

how to put simple text on any web page ?

<html>
    <head>
        <title>
            new webpage   
        </title>
    </head>
<body>
    type your content here
</body>