Friday 28 March 2014

HTML Headings


एच टी एम एल Headings

Headings tags

                            HTML मे Headings tags  को 1 से 6 तक काम में लिया जा सकता है ।  यानि हम <h1> से <h6> तक लिख सकते है । जैसे-
<h1>This is Largest heading</h1>
<h2>This is a heading</h2>
<h3>This is a heading</h3>
<h4>This is a heading</h4>
<h5>This is a heading</h5>
<h6>This is smallest heading</h6>

नोट: Browsers  अपने आप हर heading के बीच मे कुछ खाली स्थान छोड देता है ।

Horizontal line tag

                                                <hr> tag का उपयोग  करके आप HTML page मे horizontal line (आडी लाइन) सकते है । इसमे End tag नही लगाया जाता । जैसे-
<!DOCTYPE html>
<html>
<body>
<p>The hr tag defines a horizontal rule:</p>
<hr>
<p>This is a paragraph.</p>
<hr>
<p>This is a paragraph.</p>
<hr>
<p>This is a paragraph.</p>
</body>
</html>


Comments tag

  HTML पेज मे Comments डालने के लिये <!—और --> का उपयोग होता है जैसे-
 <!—अपना Comment यहाँ लिखें -->
<!DOCTYPE html>
<html>
<body>

<!--This comment will not be displayed-->
<p>This is a regular paragraph</p>

</body>
</html>

HTML Tag Reference

HTML tag reference के बारे मे विस्तारपूर्वक चर्चा आगे होगी।
Tag
Description
<html>
Defines an HTML document
<body>
Defines the document's body
<h1> to <h6>
Defines HTML headings
<hr>
Defines a horizontal line
<!-->
Defines a comment

View HTML Source

                             किसी भी HTML Web page का Source देखने के लिये कि वह कैसे बना होगा, पेज पर  right-click किजिये और "View Source" (IE) or "View Page Source" (Firefox) को select किजिये, अब आपके सामने page HTML code को दर्शाती एक window खुलेगी ।

0 comments:

Post a Comment