HTML Image Tag क्या होता है ?
Hello Friends!
मै विनय Concept Computer Center से.........
यह HTML का chapter 8 है। इस chapter में हमलोग HTML Image Tag के बारे में पढ़ने वाले है।
Update Soon........
Next Chapter : 8. HTML LIST TAG
Thank you, Have a great day
Enjoy Our Software Engineering Notes in Hindi
Student Helpline:9650597419
क्या आप भी website बनाना और website design करना सीखना चाहते है तो आज ही concept computer center में admission कराये और 50 % तक का Discount पाएं।
2 Days Free Demo Class
Hello Friends!
मै विनय Concept Computer Center से.........
यह HTML का chapter 8 है। इस chapter में हमलोग HTML Image Tag के बारे में पढ़ने वाले है।
आपलोगो ने किसी website के अंदर image या चित्र तो देखा ही होगा और देखते भी होंगे। इस chapter में हम आपको बताएँगे कि webpage में image insert कैसे करते है ? और HTML document में image को define कैसे किया जाता है ?
Introduction to HTML <img> Tag हिंदी में।
HTML में <img> Tag का use webpage में image insert करने के लिए किया जाता है।<img> tag एक empty tag होता है। जिसका कोई दोस्त यानि closing tag नहीं होता है।
webpage में image insert करने से webpage beautiful और attractive दिखाई देता है।
image या photo insert करने के लिए <img> tag का use करते है। <img> tag बहुत से attribute provide करता है।
आइए इन attribute के बारे में जानते है।
1. SRC: इस attribute का use करके आप webpage में जो image insert करना चाहते है उसका URL देना जरुरी है।
2. ALT: इस attribute का use करके आप image के बारे में बता सकते है। यदि किसी वजह से webpage पर image show नहीं हो रही है तो उसकी जगह ये text show होता है।
3. Width: इस attribute का use करके आप image की width set कर सकते है।
4. Height: इस attribute का use करके आप image की height set कर सकते है।
अब HTML <img> tag के exapmle को समझते है
<img> tag साथ src attribute use करना बहुत ही जरुरी होता है। इसके अलावा बाकि सभी attribute optional होते है।
इसका example निचे दिया गया है।
<html>
<head>
<title>Web page with image</title>
</head>
<body>
<img src="concept-logo.png" height="70" width="300" alt="concept-logo" >
</body>
</html>
<head>
<title>Web page with image</title>
</head>
<body>
<img src="concept-logo.png" height="70" width="300" alt="concept-logo" >
</body>
</html>
ऊपर दिए गए example का output निचे दिया गया है।
Next Chapter : 8. HTML LIST TAG
Thank you, Have a great day
Enjoy Our Software Engineering Notes in Hindi
Student Helpline:9650597419
क्या आप भी website बनाना और website design करना सीखना चाहते है तो आज ही concept computer center में admission कराये और 50 % तक का Discount पाएं।
2 Days Free Demo Class



No comments:
Post a Comment