HTML stands for Hypertext Markup Language.I think the first web programming language Should be HTML because Without the use of HTML no page can be created over the web.The practical information is more important rather than the story behind this.so lets begin..
We can Start with a simple program in HTML,which will print a Sentence in the browser.The first which u need is an text-editor like NOTEPAD.there are also Html editors are available.Remember one thing here the codes are in capital Letter but HTML is Not a case-sensitive Language.Open the editor and write the code as follows..
<HTML>
<HEAD>
<!--Created by Indrajeet-->
</HEAD>
<TITLE>
First Program
</TITLE>
<BODY>
INDRAJEET MISHRA
</BODY>
</HTML>
save this code with the name First program.html and select 'All files'.Then double Click the file you will get the following output in Your browser
We can Start with a simple program in HTML,which will print a Sentence in the browser.The first which u need is an text-editor like NOTEPAD.there are also Html editors are available.Remember one thing here the codes are in capital Letter but HTML is Not a case-sensitive Language.Open the editor and write the code as follows..
<HTML>
<HEAD>
<!--Created by Indrajeet-->
</HEAD>
<TITLE>
First Program
</TITLE>
<BODY>
INDRAJEET MISHRA
</BODY>
</HTML>
save this code with the name First program.html and select 'All files'.Then double Click the file you will get the following output in Your browser
<HTML> tag is required to tell the browser that the code is written in HTML.The code written Between the Tag<HTML> and </HTML> is considered as HTML programming.Beyond this tag the Code will not be considered as HTML.One Thing which deserves your specific attention is that The code enclosed between the Tags <HEAD></HEAD> does't show up in the browser And the code <!--Created by Indrajeet--> called a comment. The contents between the dashes won't show up in browser window.The code between the tag <TITLE>First Program</TITLE> directs the browser to put 'First Program' as the tittle of the page.The main part of the webpage is written between the tag<BODY> and </BODY>.The code written in this part will loads in the browser window.There are a lot of Tags which is generally used for writing the content which u will get in the Book mentioned below.
To begin with the Html You can download the book for free. Click here to download . If u r getting any sort of problem in Html after reading this book then Let me Know I will help u to work that out. If u have read this book and do every Program as required then It means that now u r not a beginner..So u can move towards Advance form of HTML
If u have problems in creating the web pages.Here I have discussed some problems.If u Need Click Here.
