PART :- 1


WHAT IS HTML? ( HTML क्या है )

HTML एक प्रकार की मार्क अप लैंग्वेज है यह स्टैण्डर्ड  मार्कअप लैंग्वेज पर  कार्य करती है HTML की फाइल ASCII Text file होती है |

HTML is a type of mark up language, it works on standard markup language. HTML's file is ASCII Text file.



                               HTML :- HYPER TEXT MARKUP LANGUAGE.


HTML versions :-

                                   HTML                                            1991
                                   HTML 2.0                                      1995  
                                   HTML 3.2                                      1997
                                   HTML 4.01                                    1999               
                                   XHTML                                          2000
                                   HTML5                                           2014

HTML के tags जिसे हम keywords  भी कह सकते है उन्हें हम angel bracktes ( < > )के अंदर रखते है  | 

The tags of HTML which we can also call keywords, we put them inside angel bracktes (<>) . 


HTML Tags :-

                            यह एक विशेष प्रकार के टैग्स होते है जो कोडिंग में  भाग लेते है 
                  HTML  दो   प्रकार के होते है [
  1. Container tag
  2.  Empty tag

    1. Container tag :-    ये वे टैग होते है जो ओपनिंग व क्लोजिंग टैग दोनों लेते है | इन्हे हम पेअर टैग भी कहते है | 

These are tags that take both the opening and closing tag. These are also called pair tags.

for ex.           <tagname> text </tagame>  

    2. Empty tags :-       ये वे टैग होते है जिनमे क्लोजिंग या एंडिंग टैग नहीं होते है |


These are tags that do not have closing or ending tags.

for ex.           text <tag name>text


                                      HTML TAGS

      1.<HTML> :-  यह टैग हमे यह बताते है की डाक्यूमेंट्स  HTML है | 
                                This tag lets us know that the documents are HTML.
      2.<HEAD> :- यह टैग HTML पेज में हैडिंग के लिए होता है और ये वेब पेज के इनफार्मेशन को टैग करके उससे सर्च करने में हेल्प करती है|
                     
This tag is for heading in the HTML page and it helps to search the web page by tagging its explanation.

      3.<TITLE> :- यह टैग वेब पेज डॉक्यूमेंट के शीर्षक देने क लिए प्रयोग होता है जो एक वेब  ब्राउज़र  के टाइटल बार पर प्रदर्शित  होती है जब भी कोई यूजर  इस वेब  साइट को हॉट लिस्ट या बुक मार्क करता  है| 

This tag is used to give the title of web page document that appears on the title bar of a web browser whenever a user marks a hot list or book on this web site.

      4.<BODY> :- यह HTML का वह टैग है जिसमे वेब  डॉक्यूमेंट की सूचनाए एवं   कंटेंट लिखे जाते है |

This is the HTML tag in which the information and content of the Web document is written.


                             ELEMENTS OF HTML