HTML BASICS

Posted by ajish on 4:02 PM

HTML hypher text markup language  is the basic langauge that used to create web pages. By using HTML  one can create a simple web page that has limited intraction with the people. The building blocks of this lanuage is called ELEMENTS . Usually elements areenclosed in two tags.TAG which opens is called a opening tag and which closes is called closing tag.HTML is a structured language, that means tags that used in language must be opened and closed correctly. GENERAL FORMAT for desigining web page is as shown below


                          <HTML>
                                        <HEAD>
                                                       <TITLE></TITLE>
                                       
                                       </HEAD>
                                
                                                    <BODY>
                              
                                                     </BODY>
                         
                            </HTML>  
In this <HTML> element  represents entire HTML document. It has a start tag <HTML> and end tag </HTML>
NOTE: HTML is not a case sensitive language
NOTE: Every closing tag is indicated with   '/'symbol

<HEAD> represents

0 comments:

Post a Comment