HTML परिचय
In this page:
HTML क्या है?
HTML का मतलब है HyperText Markup Language। यह कोई प्रोग्रामिंग भाषा नहीं है; यह एक markup language है जो आपके वेब ब्राउज़र को बताती है कि वेब पेजों को कैसे structure करें और display करें।
उदाहरण: What is HTML?
<html>
<body>
HTML structures and displays this text.
</body>
</html>
मुख्य HTML संरचना
हर valid वेब पेज को एक standard skeleton की ज़रूरत होती है। इसमें declarations और tags शामिल होते हैं जो ब्राउज़र को बताते हैं कि यह किस document type को पढ़ रहा है।
उदाहरण: The Core HTML Structure
<!DOCTYPE html>
<html>
<head>
<title>Cookies Cursor</title>
</head>
<body>
<p>Welcome to our utility tools!</p>
</body>
</html>
ब्राउज़र HTML कैसे पढ़ते हैं
वेब ब्राउज़र HTML tags को खुद display नहीं करते। इसके बजाय, वे tags को instructions की तरह पढ़ते हैं और उनके अंदर के visual content को render करते हैं।
उदाहरण: How Browsers Read HTML
<p>This text is displayed, but the <p> tags themselves are not.</p>
HTML वर्ज़नों का संक्षिप्त इतिहास
HTML को 1991 में बनाया गया था और यह कई क्रमांकित versions से होकर गुज़रा, जिसमें HTML 4.01 1990 के दशक के अंत में एक लंबे समय तक चलने वाला standard बना।
HTML5, जो 2014 में release हुआ, ने video, audio, और article व section जैसे semantic elements के लिए native support लाया, और आज हर modern ब्राउज़र इसी version का उपयोग करता है।
उदाहरण: A Brief History of HTML Versions
<!DOCTYPE html>
<html lang="en">
<head>
<title>cookiescursor.com</title>
</head>
<body>
<article>
<h2>Free Tools</h2>
<p>cookiescursor.com offers 100 free developer tools.</p>
</article>
</body>
</html>
Chapter Quiz — Complete all 11 topics to unlock
0/11 topics done
Complete these topics first: