If tutorials available on this website are helpful for you, please whitelist this website in your ad blocker😭 or Donate to help us ❤️ pay for the web hosting to keep the website running.
हम HTML elements को start tag ,content और end tag से define करते है। अगर element में content हो तो वह closing tag से end होता है जहा element के आगे एक slash होती है।
For Examples
Start Tag | Content | End Tag ----------------------------------------------------- <p> | This is paragraph content. | </p> <h1> | This is heading content. | </h1> <div> | This is division content. | </div>
तो यहाँ <p > और <p/> एक Html element है। इसी तरह <h> और <h/> एक html element है। कई ऐसे Html elements है जिसे हमे close करने की ज़रूरत नहीं है, उन्हे हम void elements कहते है।
Html में कई ऐसे elements है जो html documents specify करते है और यह specify करते है की कोन सा content कौन से html document में होना चाहिए।
<body> <h1>My First Heading</h1> <p>My first paragraph.</p>
File : nested_elements.html
<!DOCTYPE html>
<html>
<head>
<title>Title</title>
</head>
<body>
<h1>My First Heading</h1>
<p>My first paragraph.</p></body>
</body>
</html>
Html elements कुछ इस प्रकार है -
block elements की start always new line से होती है। block elements में always full width available होती है। block element में top और bottom margin होता है।
कुछ block element इस प्रकार है -
<address> <article> <aside> <blockquote> <canvas> <dd> <div> <dl> <dt> <fieldset> <figcaption> <figure> <footer> <form> <h1> <h6> <header> <hr> <li> <main> <nav> <noscript> <p> <pre> <section>
Inline element की start new line से नहीं होती है। inline elements अपने need के according width लेता है। यह element paragraph के अंदर लिखा होता है।
कुछ inline element इस प्रकार है -
<a> <abbr> <b> <bdo> <big> <br> <button> <cite> <code> <dfn> <em> <i> <img> <input> <kbd> <label> <map> <object> <output> <q> <samp> <script> <select> <small> <span> <strong> <sub> <sup>
File : html_elements.html
<!DOCTYPE html>
<html>
<head>
<title>HTML Elements Example</title>
</head>
<body>
<h5>h5 is a block element</h5>
<header>header is a block element</header>
<div>div is a block element</div>
<blockquote>blockquote is a block element</blockquote>
<pre>pre is a block element</pre>
<span>span is an inline element</span>
<big>Rahul</big>
<b>Kumar</b>
</body>
</html>