Some Other Block Level Tags
ये एक block level tag होता है। इसमें दूसरे सभी tags यूज़ किये जा सकते है। और इसे यूज़ करने से जैसे आप text editor में tags को configure करते है वैसे ही वे webpage पर show होता है।
|
HTML <span> Tag
<span> एक inline tag है। इससे आप text format करते है। जब भी आप इस tag को यूज़ करते है तो इससे आपका text दूसरी line में ना जाकर उसी line में रहता है।
जो text इस tag के बीच रहता है formatting बस उसी पर apply होती है। <span> tag के खुद के कोई attributes नहीं होते है लेकिन आप style और class attributes को इस tag के साथ यूज़ कर सकते है। इस tag को आप headings में भी यूज़ कर सकते है।
इसका उदाहरण नीचे दिया जा रहा है।
जो text इस tag के बीच रहता है formatting बस उसी पर apply होती है। <span> tag के खुद के कोई attributes नहीं होते है लेकिन आप style और class attributes को इस tag के साथ यूज़ कर सकते है। इस tag को आप headings में भी यूज़ कर सकते है।
इसका उदाहरण नीचे दिया जा रहा है।
<html>
<body>
<p>
This is a paragraph. In this paragraph if you want to apply formatting to certain words then you can <span style="color:red;"> put them in span tag.</span>
</p>
</body>
|
ऊपर दी गयी script निचे दिया गया web page generate करती है।
Some Other Inline Tags
<a> tag को inline tag माना जाता है। इसे यूज़ करते हुए आप किसी भी text को link बना सकते है। ऐसा करने से वह webpage में उसी line में show होता है।
| |
0 Comments