HTML Physical Tag
HTML में निम्नलिखित Physical Tag होती है ।
- <B> (bold):- इस tag का use कर के हम टेक्स्ट को boldकर सकते है । अर्थात यह tag text को bold format में display करता है ।
Syntax -<B>course </B>
- <I>(italic):- इस tag का use करके हम text को italic format में display कर सकते है ।
Syntax -<I>BCA </I>
- <U>(underline):- tag का use करके हम text को underline format में display कर सकते है ।
Syntax -<U>DCA </U>
- <EM>(empactive):- इसमें text को italic modeमें display कर सकते है ।
Syntax -<EM>He is a good Boy. </EM>
- <Sub>(subscript) ):- tag का use करके हम text को subscript format में display कर सकते है ।
Syntax -H<Sub>2 </Sub>O
Output:- H2O
- <sup>(super):- इस tag के द्वारा हम text को super format में display कर सकते है ।
Syntax -2X<sup>2 </sup>+X<sup>2 </sup>+8
Output:- 2x2 +x2 +8
- <big>:- इस tag का use display होने वाले text को currunt size से अर्थात currunt font size सेएक size बड़ाकर display करता है ।
Syntax -<big>BCA </big>
- <small>:- इस tag का use करके हम display होने वाले text को हम उसकी actualsize से एक size छोटा करके display करता है ।
Syntax -<small>He is a good Boy. </small>
- <code>:- इस tag का use करके program code के example को display करने के लिए किया जाता है । यह text को italic type format में अर्थात बड़ी हुई wridth के साथ display करता है ।।
Example -The <code>PGDCA </code> class in jhalawar
- <dfn>(defination) :- इस tag का use करके हम definitionवाले word को अलग अर्थात italic format में display करते है ।
Syntax -<dfn>HTML </dfn>is a web site desiging language
- <storng>:- यह textको bold format में display करता है ।
Syntax -<strong>he is good boy </strong>
- <strike>:- इसमे word को strike format में display कर सकते है।
Syntax -<strike>BCA </strike>
- <hr>( horizontal row ):- यह tag empty tag होता है । इसमे द्वारा हम text के बाद एक horizontal row display करता है ।
Syntax -<hr>
- <address>:- इस tag का use web page के end में दी जाने वाली information जैसे –copy right ,web master name ,e-mail address etc. को display करने के
लिए किया जाता है । इस tag के अन्दर लिखे गए text की style automatic change हो जाती है । यह address को special format में display करता है ।
Example - <address>c-32 <br>Indra colony </address>
- <pre>:- इस tag का use text को table format में display करने के लिए किया जाता है ।
Syntax -<pre>
Student Course
Jaya Pgdca
Pankaj Bca
Rakesh Dca
</pre>
- Comment Tag:- यह tag एक standerd alone tag होता है । इसका use wedsite के में विभिन्न सूचना देने के लिए useकियाजाता है । ताकि इन प्रत्येक comment इस प्रकार से आरम्भ होता है ।
Syntax -<!-- text written here -->
|