After knowing about HTML the second thing arise that how can we started with HTML. As we know that HTML is a markup language not programming language so it is used for creating web.
Started with HTML
To start with HTML we need only simple notepad which is best to learn with HTML. Now a day's professional web developer prefer dream weaver of FrontPage instead of writing plain text.
Creating your web with HTML
To create webpage in HTML open the notepad and write HTML coding for which you want to make web page and then save as by giving your desired name with extension of html.
For example:
<html>
<head>
<title> this is my webpage</title>
<body>
<h1> This is my first page</h1>
</head>
</html>
When you save as by giving extension with .html then go to location where you save it. After going to exact location a browser icon will appear here with your given desired name and when you opened it will look like this.

This is our simple very simple webpage in HTML. To use HTML is very easy for making WebPages. Advanced coding of HTML can be used but we will do step by step.
No comments:
Post a Comment