How To Create Webpage
Requirements For Webpage
You don't need any special tool to learn HTML.
Creating First Webpage
<html> <body> <h1>This is my first webpage.</h1> </body> </html>
The above code will display following result:
This is my first webpage
To begin your first webpage you need an editor such as notepad.Open notepad on your computer
and begin your webpage by < html> tag.Every HTML page begins with this tag.
We know that every tag in html has a beginning and a closing, so every tag has to be closed.HTML tags are closed by a forward slash '/' followed by name of the tag enclosed within angular braces.These are basics of HTML.
Ex- <b> </b>,<strong> </strong> etc.
Learn more about HTML Basics.
Everything that has to be displayed in the webpage is written in between these tags.
The browser displays only the content between the tags and the rest is ignored by the
browser.
Write the content in the notepad that you want to display.Then click on the file menu and
choose save as option.Save the file with '.htm' or '.html' extension.
Minimize the notepad and open the saved file.
You have created your first webpage.