ads

Saturday, 23 January 2016

TUTORIAL OF HTML


BASIC INFORMATION ABOUT HTML 


HTML:-HTML is a hyper text markup language.It is used to create a websites.HTML tags are used to describe contents. It is not case sensitive.
                                                                       WEBSITES

                                      Def:-Websites is a collection of web pages. 
                                            Websites have a two types;-
                                             (i)  Static websites
                                             (ii) Dynamic websites

(i) STATIC WEBSITES:-Static websites are those in which there are no updations. it also called  static websites.
(ii) DYNAMIC WEBSITES:-dynamic websites have a backend updations.These are also called dynamic websites.



                                                                        WEB PAGE 
         webpages is a collection of information.webpages is created by java script,html etc.  
                               

                                              TAGS:-HTML tag have a two types;- 
                           
                                                     (i) Pair Tag
                                                     (ii) Single Tag
  • PAIR TAG

                                            Def;- which tags are opened and closed.
                             
                                                like;-<html>      </html> pair tag
                                                        <head>       </head>etc.

  • SINGLE TAG

                                        Def;-which tags are opened but not closed.
like:-<br> ,<b>,<i>etc.


  • ATTRIBUTE

Def;-Attribute is a property  of  tags.Attribute is attached with less and greater than symbols.
like;-<h1 align="center">DEEP</h1>   This means text is displayed on center. Here <h1> is a tag name and align is a property and center is a value .align="center"  is a attribute.