Block vs Inline
Block-display element will span the full width of the space available to it, so will start on a new line in the flow of HTML. The flow will continue on a new line after it displays the full width of the block element. This can be over written by adding the attribute display:inline
This brings us to inline-display elements which doesn’t break the flow of the document.
