Chapter 2: Creating Our First Website

We start building a website by creating a file named index.html. Here, index.html is a special filename which is presented when the website root address is typed. It means, if many HTML files (.html) are in server and a request is sent by user to the server as the home page URL of the website, then index.html will be fetched initially.

A Basic HTML Page

code

A tag is like a container for either content or other HTML tags.

code

IMPORTANT NOTES