
इस Article में हम HTML Tutorial in Hindi के बारे में पढ़ेंगे। जिसमे हम HTML को अच्छे से सीखेंगे। तो आप इस Article को ध्यान से पढ़े।
Learn HTML in Hindi
HTML एक Markup language है। जिसे Web pages create करने के लिए Use किया जाता है। इसकी Basic जानकारी हम Web Development Part 2 में दे चुके है। इसलिए यहाँ हम इसकी basic जानकारी नहीं देंगे। हम आपको ये Language सिखाना शुरू करते है।
इसे सीखने से पहले आपके Computer में एक Text Editor होना चाहिए। Text Editor Notepaid ++ Use कर सकते है। ये Text editor Development के लिए काफी अच्छा Text-Editor है। इसके आलावा आप Online HTML text editor भी Use कर सकते है।
HTML Langauge में Tag Attribute Element होते है। ये हमने पिछले article में बताया था। तो सबसे पहले ये जान लेते है की ये होते क्या है।
Tags क्या है
HTML Language tags से मिलकर बनी है। यानि किसी भी website को Create करने के लिए HTML के tags use किये है। जैसे- <html> ये एक HTML file का Tag है इसका Ending tag </html> है। HTML के सभी tags open tag और Ending tag होता है। इन्हे HTML के Element भी कहते है। HTML language में बहुत से tag है। ये सभी tags अलग अलग काम के लिए Use होते है।
Heading Create करने के लिए — <h1>
Paragraph create करने के लिए — <p>
Section Create करने के लिए — <section>
Image Add करने के लिए —- <img>
Links add करने के लिए ——— <a>
इसके आलावा और भी बहुत से है। जिसके बारे में आगे जानेगे।
Attribute क्या है ?
इन tags के साथ में कुछ और भी Use होता है जिसे attribute कहते है। ये Attribute Tags Element की Value बताते है। जैसे–
<a href="https://www.ostomio.com">This is a link</a>
HTML File Structure
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<body>
<h1>Ostomio</h1>
</body>
</html>
Output
Ostomio
HTML Formating Element in Hindi
<html>
<head>
<title>first page</title>
</head>
<body>
<p>This is regular text </p>
<p><b>bold text </b></p>
<p><big> big text </big></p>
<p><i> italic text </i></p>
<p><small> small text </small></p>
<p><strong> strong text </strong></p>
<p><sub> subscripted text </sub></p>
<p><sup> superscripted text </sup></p>
<p><ins> inserted text </ins></p>
<p><del> deleted text </del></p>
</body>
</html>
Output
HTML Color in Hindi
Output
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<body bgcolor="yellow">
<h1><font color="blue"> Vishal </font></h1>
</body>
</html>
Output
HTML Styles in Hindi
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<body>
<h1>Vishal</h1>
</body>
</html>
Vishal