What is HTML?
What is HTML?
HTML stands for HyperText Markup Language. It is the standard language used to create and design the structure of web pages. HTML defines the content, structure, and layout of a webpage by using a system of tags and attributes. These tags tell the web browser how to display elements like text, images, links, and other multimedia on a webpage.
Key Features of HTML:
- Tags: HTML uses tags like
<html>
,<head>
,<body>
,<h1>
,<p>
, etc., to structure the content. - Attributes: Tags can have attributes that provide additional information. For example,
<img src="image.jpg" alt="Image description">
usessrc
andalt
as attributes. - Hypertext: The term "hypertext" refers to text that contains links to other texts or web pages, enabling navigation across the web.
- Markup Language: HTML is a markup language, meaning it annotates text so that computers can understand and display it correctly.
HTML क्या है?
HTML का मतलब हाइपरटेक्स्ट मार्कअप लैंग्वेज होता है। यह एक मानक भाषा है जिसका उपयोग वेब पेजों की संरचना और डिज़ाइन बनाने के लिए किया जाता है। HTML टैग्स और गुणों के एक सिस्टम का उपयोग करके एक वेबपेज की सामग्री, संरचना, और लेआउट को परिभाषित करता है। ये टैग्स वेब ब्राउज़र को बताते हैं कि टेक्स्ट, इमेज, लिंक और अन्य मल्टीमीडिया को वेबपेज पर कैसे प्रदर्शित किया जाए।
HTML की मुख्य विशेषताएँ:
- Tags: HTML uses tags like
- टैग्स: HTML
<html>
,<head>
,<body>
,<h1>
,<p>
जैसे टैग्स का उपयोग करके सामग्री की संरचना बनाता है। - गुण (Attributes): टैग्स में अतिरिक्त जानकारी देने के लिए गुण होते हैं। उदाहरण के लिए,
<img src="image.jpg" alt="Image description">
मेंsrc
औरalt
गुण हैं। - हाइपरटेक्स्ट: "हाइपरटेक्स्ट" शब्द का मतलब ऐसे टेक्स्ट से है जिसमें अन्य टेक्स्ट या वेब पेजों के लिंक होते हैं, जिससे इंटरनेट पर नेविगेशन संभव होता है।
- मार्कअप भाषा: HTML एक मार्कअप भाषा है, जिसका मतलब है कि यह टेक्स्ट को इस तरह एनोटेट करता है कि कंप्यूटर इसे समझ सकें और सही ढंग से प्रदर्शित कर सकें
1. <html>
- Description: The root element of an HTML document. It tells the browser that this is an HTML file.
- Example:html
<html> <!-- Content goes here --> </html>
2. <head>
- Description: Contains meta-information about the document, like its title or links to CSS files.
- Example:html<head>
<title>My First Page</title> </head>
3. <title>
- Description: Sets the title of the webpage that appears in the browser's title bar or tab.
- Example:html
<title>Welcome Page</title>
4. <body>
- Description: Contains the content of the webpage that is visible to the user, like text, images, and links.
- Example:html
<body> <p>Hello, world!</p> </body>
No comments:
Post a Comment