What is block level and inline elements in html in hindi?

I am working as freelancer. I am a experienced full stack web developer. My lovely stack is MERN but I am open for new tech. I love to work with teammates for achieve goals. I love researches to find specific new things.
Html में टैग दो तरह के होते हैं-एक वह जो लिखने पर अपनी पूरी (लाइन) width cover करता है, और दूसरा वह है, जो उतनी ही जगह लेता है, जितना कि उसे जरुरत है। कुछ टैग के बगल में कोई दूसरा Element नहीं आ सकता है। जबकि कुछ टैग element के बगल में दूसरे टैग element लिखे जा सकते है।
Block level element क्या है? What is Block level element in html in hindi?
जो टैग browser पर अपनी जगह के लेवल में पूरी width cover किये रहता है, या पूरी लाइन cover किये रहता है, वह block level element है। जैसे heading tag <h1>,<h2>.

List of Block level elements in HTML:
<address> | <article> | <aside> | <blockquote> | <canvas> | <dd> |
<div> | <dl> | <dt> | <fieldset> | <figcaption> | <figure> |
<footer> | <form> | <h1>..<h6> | <header> | <hr> | <li> |
<main> | <nav> | <noscript> | <ol> | <p> | <pre> |
<section> | <table> | <tfoot> | <ul> | <video> |
What is inline element in html in hindi? HTML में inline element क्या है?
वह टैग element जो अपनी जगह भर जाने के बाद अपनी ही लाइन में अगले टैग Element को जगह देते हैं, HTML के Inline element कहलाते हैं। जैसे <span> टैग। दो <span> टैग लिखने पर... <span>First span </span> <span>second span </span>

List of Inline elements in html:
<a> <abbr> <acronym> <b> <bdo> <big> <br> <button> <cite> <code> <dfn> <em> <i> <img> <input> <kbd> <level> <map> <object> <output> <q> <samp> <script> <select> <small> <span> <strong> <sub> <sup> <textarea> <time> <tt> <var>



