Understanding Void (Self-Closing) Elements in HTML
Void elements, also known as self-closing elements, are HTML elements that do not have any content or closing tags. They are used to insert things like line breaks, images, or metadata into a page without wrapping any inner content.
<br> : Inserts a line break.
<img> : Displays an image.
<input> : Adds an input field.
<meta> : Defines metadata inside the <head>.