Introduction of HTML


Need for begin html :-

It's very important to know the basic use of windows because windows is the best or easy platform to learning Html. You must know these use are below.

1. In any text editor, you need to know the basic word processing uses.
2. How to create files and directories.
3. Basic knowledge of Internet Browsing and to use a browser like as Google Chrome or Mozilla Firefox.

HTML Introducing :-

Html means "Hyper Text Markup Language". And it is the most used language to make  web pages.

Html Document Creating :-

To begin html coding you need 2 things. One of these is a browser and another is your computer notepad program. Then you can write the following code of html in your notepad. And save it as "example.html". Coding is begin with <html>  tag and end with </html>. To title your web page you must use it in header tag <head>. and title tag is start with<title> and end with </title>. Header tag ends with </head>.
 Then you can start body tag. In web page body  you have to use a lot of tags to arrange you web page good looking. Body tag start with <body> and end with </body> tag. Now we see how to these codes in notepad.
======================================================================
<html>

<head>
<title>Welcome to my Web site</title>
</head>

<body>

<h3>Mango</h3>
<p> You can write a description about your subject here.......</p>

</body>

</html>
======================================================================
Now save as "html introduce.html". And open it in any browser. See the result like this image.