We will Now start Creating a Web page with HTML.To Learn Coding with HTML, Lets learn some Basic Rules.

  • Entire Page is contained inside and tag.
  • HTML Web Document is Seperated in two parts. Head and Body. Head starts Just after HTML with and closes with contents with tag. Head is where where Brain Lies means all Scripts, styles, and Meta Tags are Written Inside Head tag. As soon tag is closed tag is started to Open Body of HTML Page. Body is Place where you can put your Design and Data. This is directly responsible for Display or Look or Design (Web Page). After Writing Body of Web Page tag is closed with just before tag.

Lets have an Example.

Open your Favorite Text Editor (Mostly Love Notepad, I also):

Type Below Code
[html]

<html>

<head><title>First Web Page</title></head>

<body>

<p>This is a sample paragraph.</p>
<p>This is Our First HTML Web Page.</p>

<p>Content of Website</p>

</body>

</html>

[/html]
Steps Now in Brief:

First I wrote
[html]

<html>

[/html]
bacause I want to create a HTML Document.

Then I put Head in HTML Document, because I want to Write some Code in Head Section. I added Body to HTML Document. I wrote some Paragraph between Body tags.

Note these Tags are Accepted only inside Body.
This is Our First HTML Web Page.
After Coding this in Notepad or Any other Text Editor, Choose Save from File Menu or Press CTRL+S to Save File. Name your File and Put a extension .html or .htm. If you do not type this Extension, File is Saved as Just Text with File Extension .txt and that will not be a HTML Web Page.

Related Posts

Leave a Reply

This website uses cookies to improve your experience. We'll assume you're ok with this, but you can opt-out if you wish. Accept Read More

Adblock Detected

Please support us by disabling your AdBlocker extension from your browsers for our website.