HTML क्या है - What is full form of html?
HTML क्या है - What is full form of html? HTML stand for Hyper Text Markup Language. HTML एक Markup भाषा है। HTML को वेब पेज बनाने के लिए यूज़ किया जाता है। 1990 के दशक के अंत में टिम बर्नर्स-ली (Tim Berners-Lee) द्वारा एचटीएमएल(HTML) विकसित (developed) किया गया था। इसे शुरुआत में 1993 में रिलीज़ किया गया था।
इसको सीखना और डेवेल्प करना बहुत ही आसान है। आप इसे आसानी से इसे youtube या ऑनलाइन साइटों से सीख सकते है। हम एक एचटीएमएल(html) पेज में tag और attributes का उपयोग करते हैं।
<!DOCTYPE html>
<html>
<head>
<title>WebPage Title</title>
</head>
<body>
<h1>Heading one </h1>
<h2>My First Heading</h2>
<p>First paragraph.</p>
</body>
</html>
इसको सीखना और डेवेल्प करना बहुत ही आसान है। आप इसे आसानी से इसे youtube या ऑनलाइन साइटों से सीख सकते है। हम एक एचटीएमएल(html) पेज में tag और attributes का उपयोग करते हैं।
Example :-
<!DOCTYPE html>
<html>
<head>
<title>WebPage Title</title>
</head>
<body>
<h1>Heading one </h1>
<h2>My First Heading</h2>
<p>First paragraph.</p>
</body>
</html>
Comments
Post a Comment