HTML Heading Tags in Hindi and English
HTML Heading Tag
ये Heading Elements है. Heading Element द्वारा HTML
Document में Headings को Define किया जाता है.
HTML में H1 से H6 Level तक Headings बना सकते है.
Ex-
<H1>AD Computer
Campus</H1>
AD Computer Campus
<H2>AD Computer
Campus</H2>
AD Computer Campus
<H3>AD Computer
Campus</H3>
AD Computer Campus
<H4>AD Computer
Campus</H4>
AD Computer Campus
<H5>AD Computer
Campus</H5>
AD Computer Campus
<H6>AD Computer
Campus</H6>
AD Computer Campus
Heading Alignment
इस टैग से हम heading को
alignment दे सकते है.
With this tag we can
give alignment to the heading.
Ex-
<H4
align=”Center”>AD Computer Campus</H4>
AD
Computer Campus
<H5
align=”Right”>AD Computer Campus</H5>
AD
Computer Campus
<H6 align=”Left”>AD
Computer Campus</H6>
AD Computer Campus
Background Change
इस Tag से हम बैकग्राउंड
के Color को चेंज कर सकते है.
With this tag, we can
change the color of the background.
Ex-
<Body
Background=”Red”>
HR (Horizontal Rule) Tag
<hr> टैग HTML पेज में thematic break को परिभाषित करता है (उदाहरण के लिए विषय में बदलाव)।
<hr> Element को अक्सर एक Horizontal Rule के रूप में प्रदर्शित किया जाता है जिसका उपयोग HTML पेज में सामग्री को अलग करने (or define a change) के लिए किया जाता है।
The <hr> tag defines a thematic break in an HTML page (e.g. a shift of topic).
The <hr> element is most often displayed as a horizontal rule that is used to separate content (or define a change) in an HTML page.
Ex- 1
<html>
<body> <p> There is a horizontal rule below this paragraph. </p> <!--HTML hr tag is used here--> <hr> <p> This is a horizontal rule above this paragraph. </p> </body> </html>
Output
Ex- 2
<html>
<head>
<title>HTML hr tag</title>
</head>
<body>
<p>
Normal horizontal line.
</p>
<!--HTML hr tag is used here-->
<hr>
<p>
Horizontal line with height
of 30 pixels
</p>
<hr size="30">
<p>
Horizontal line with height
of 30 pixels and noshade.
</p>
<hr size="30" noshade>
</body>
</html>
Output
No comments: