HTML

THIS IS MY FIRST WEB TUTORIAL :-


Today i will going to teach you all the basic html ,with a simple  example.

 This HTML stands for Hypher Text Markup Language. This language is
 used for writing web pages, These tags that are used are predefined, in this html
 the tags opened must be according to rules of html if the tags are not closed the
 tag will not work. This HTML could be written in any text editor. So lets see the
 example below:

 <html>
     <head><title>example</title></head>
         <body>
                hai
          </body>
 </html>

In the example above
       <html> is the main tag which is used within that all the code is written
       <head>this is the tag used to display the heading at the top of the browser
        <title> it is the tag used to display the heading or top of the window
        These tags are closed by using the </> slash after which the tag name is specified ,
       <body> this tag is used to display the text in the browser

           And after completing this you must save the file by clicking file->save->All files-                            >fileame.html here the username is user defined you could give what ever the name you wan't          but .html extension is must for this .
   

  •            Then close the file and open the saved file which you have saved ,which is given the extension .html  
  •            which will going to open the file in the browser. 
  •             If the default browser in your system is outdated then Right-click->open with->select the browser you want to open with 


I am having chrome browser so i have opened my html file with that so
     you could use other browsers like firefox or Interent Explorer or saffary which ever you have.

             But i don't know if it works in MAC & UNIX i have only tried it out on the Windows.


              You can even view this video that how it works........

                                 

       If you guys like this tutorial then "please comment in this site below"

       If you guys have any queries then you could write them down in the comment section

To read more click here

Comments