HTML introduction || HTML kya hai, HTML elements kya hai, HTML tags kya hai

HTML introduction - HTML क्या है ?

HTML एक मार्कअप भाषा है जिसका उपयोग वेबपेज बनाने के लिए किया जाता है।  यह भाषा वर्ल्ड वाइड वेब पर  आपके कंटेंट की संरचना को भी परिभाषित करता है। HTML भाषा से केवल एक साधारण वेबपेज बनाया जा सकता है लेकिन एक मॉडर्न वेबपेज में HTML के अतिरिक्त अन्य भाषाओं जैसे CSS व जावास्क्रिप्ट (JS) का भी उपयोग किया जाता है। HTML जहाँ आपके वेबपेज की संरचना को बनाने में उपयोग किये जाते हैं वहीं CSS का उपयोग वेबपेज को स्टाइल  करने (आकर्षक बनाने) के लिए उपयोग किया जाता है। 

HTML is a markup language used to create web pages. This language also defines the structure of your content on the World Wide Web. Only a simple web page can be created with HTML language, but in a modern web page, apart from HTML, other languages like CSS and JavaScript (JS) are also used. While HTML is used to create the structure of your web page, CSS is used to style (making attractive) the web page.

HTML full form - HTML का पूर्ण नाम ?

HTML का पूरा नाम हाइपरटेक्स्ट मार्कअप लैंग्वेज है। हाइपरटेक्स्ट उन लिंक्स को दर्शाता है जिनके द्वारा एक वेबपेज दूसरे वेबपेज से जुड़े होते हैं। मार्कअप ऐसे विशेष टेक्स्ट (आमतौर पर कोड) होते हैं जो HTML में उपयोग किये जाते हैं। HTML के मार्कअप कोड द्वारा वेब पर उपलब्ध कंटेंट को समझा और प्रदर्शित किया जाता है। वेबपेज को देखने के लिए हम किसी भी ब्राउज़र का उपयोग कर सकते हैं। 

The full name of HTML is Hypertext Markup Language. Hypertext refers to the links by which one web page is connected to another web page. Markup is special text (usually code) that is used in HTML. HTML markup code is used to interpret and display content on the web. We can use any browser to view the web page.

HTML Elements - HTML एलिमेंट्स ?

जो जानकारी वेबपेज पर उपलब्ध होती है या जिनसे वेबपेज का निर्माण होता है HTML एलिमेंट्स कहलाते हैं। जैसे एक वेबपेज पर इमेज, पैराग्राफ, हैडिंग, लिस्ट, टेबल, फॉर्म आदि हो सकते हैं ये सभी ही HTML एलिमेंट्स कहलाते हैं। 

The information that is available on a web page or from which a web page is created is called HTML elements. For example, a web page can have images, paragraphs, headings, lists, tables, forms etc., all these are called HTML elements.

HTML Tags - HTML टैग क्या हैं ?

HTML एलिमेंट्स को वेबपेज पर टैग्स के द्वारा जोड़ा जाता है। एक HTML टैग में एंगल ब्रैकेट < > के अंदर एलिमेंट का नाम होता है। एलिमेंट का नाम केस सेंसिटिव नहीं होता है अर्थात इसे अपरकेस या लोअरकेस या दोनों, किसी भी रूप में लिखा जा सकता है। उदाहरण के लिए यदि किसी वेबपेज पर एक पैराग्राफ एलिमेंट जोड़ना है तो उसे <p> टैग का उपयोग करके जोड़ते हैं। 

HTML elements are added to a web page using tags. An HTML tag contains the name of the element inside angle brackets < >. The name of an element is not case sensitive, that is, it can be written in any form, uppercase or lowercase or mixed. For example, if a paragraph element is to be added to a web page, then it is added using the <p> tag.

Types of HTML Tags - HTML टैग्स के प्रकार -

HTML टैग्स दो प्रकार के होते हैं- कंटेनर (container tag) टैग्स और एम्प्टी (empty tag) टैग्स। कंटेनर टैग्स ऐसे टैग्स होते हैं जिनके बीच में कंटेंट होता है। कंटेनर टैग ओपन और क्लोज अलग अलग किये जाते हैं तथा ओपन टैग और क्लोज टैग के बीच कंटेंट लिखा होता है। HTML टैग्स ऐसे टैग्स होते हैं जिनके बीच कंटेंट नहीं लिखा जाता तथा इन्हे कंटेनर टैग्स की तरह ओपन और क्लोज अलग अलग नहीं किया जाता। 

There are two types of HTML tags – container tags and empty tags. Container tags are tags that contain content between them. Container tags open and close are separated and content is written between the open tag and close tag. HTML tags are such tags in which content is not written and they are not separated into open and close like container tags.




कंटेनर टैग का उदाहरण-

<p>This is content. </p>

एम्प्टी टैग का उदाहरण-

<br/>






Comments