Thursday 7 July 2016

How to create HTML page or Web pages-Website in Html simple



To create any HTML simple web page you need to follow these steps:-

Html page 1.Open a new document anywhere on the computer where you can easily locate it and save it with extension (.html).

2.Now Open .html file with any Text Editor like Notepad++ or Edit Plus or you can  open with Windows Notepad.

3.Start a Html tag with Symbol <html> and close with </html> tag. You have added all other HTML tags between these two tags.

4.Now put Head "<head></head>" tag within HTML tags.Head tag is used to provide information about your page in the browser that helps to load your pages on browsers. It also used to attach internal or external CSS ,javascript in your pages.

5.Head tag is also included tiltle "<title> </title><title> </title>" tags which is used to provide title to your web page it shown on the title bar of your web browser.

6.Now is the main part of your page is the body part that will show on the browser window.It start's with opening body tag <body> and close with </body>.

7.After creating body tags now you can add you contents on your web page with the help of different HTML tags.

For example, we can add text headings in your web page by using heading tags.There are six heading tags for different font size.
From <h1></h1> to </h6></h6> are heading tags that can be used to provide Headings in html.
Html page
Example HTML page: Take an example we add "Hello Jenny" word with heading tag <h1>.

<html>
    <head>
          <title>My First Text on Web </title>
    </head>
    <body>
           <h1>Hello Jeanny</h1>
    </body>
</html>

create HTML page

create HTML page

Html page


Html page
Related Post:


Please Comment and provide any suggestion!! THANKS

1 comment:

Leave a Reply!