what is inline elements?

Inline elements do not start on a new line and only take up as much width as necessary.

what is block-level element?

Block-level elements are those that start on a new line and take up the entire width of their container by default. They essentially claim all the horizontial space for themselves, pushing any content that comes after them to a new line.

hi i am <div> i am block level element.
hi i am <span> I am inline element.