Html


HTML

  what is HTML?


                        HTML is the shortform of "hyper text markup language".
                  In html mostly use tags
 

Syntax:

                            <html>
                                     <head>
                                                <title>Here you can give a suitable title </title>
                                     </head>
                                       <body>
                                            ........       
                                        </body>
                                       </html>
   
           This is the basic syntax of html .
             Always remember that if you open the tag you must close the tag by using this "/";
  

For Example :

  
      If you open the the Html tag as 
                              <html>      ........ you must close the html tag.  
       </html>   ........like this. 
          
      In html there are three main tags use commonly in html.
     
 These are:
     1:  html tag .......<html></html>
     2:  head  tag......<head></head>
     3: body tag .......<body></body>

IMPORTANT:

 These are the most important tags used in every html code.
                                                        
        After this there are different types of tags that works differently in html.
     remember that the <head></head> and <body></body> tags can only work inside the html code.

     When you save the html code you must follow these instructions to during save the file.
    
    1: While saving the file, choose a name of the file.
    2: You can save this file in any folder of the computer or laptop.
    3: You must save this html file as -> file name.html.
    4: For html file use html word in every html file during saving.

  FOR OUTPUT: 

            You can see the result of your code. 
    when the code is save you simply open it.
    it show you a result of your code.
             

            FOR More Information Follow My Website .