# HTML Elements
● HTML Elements
An HTML element usually consists of a start tag and end tag.
The HTML element is everything from the start tag to the end tag.
The HTML element is everything from the start tag to the end tag.
● Nested HTML Elements
HTML elements can be nested. All HTML documents consist of nested HTML elements.
● Empty HTML Elements
HTML elements with no content are called empty elements.
<br> is an empty element without a closing tag "</br>".
Empty elements can be "closed" in the opening tag like this <br/>.
HTML5 does not require empty elements to be closed. But if you want stricter validation, or if you need to make your document readable by XML parsers, you must close all HTML elements properly.
<br> is an empty element without a closing tag "</br>".
Empty elements can be "closed" in the opening tag like this <br/>.
HTML5 does not require empty elements to be closed. But if you want stricter validation, or if you need to make your document readable by XML parsers, you must close all HTML elements properly.
● Use Lowercase Tags
HTML tags are not case sensitive. <P> means the same as <p>.
The HTML5 standard does not require lowercase tags, but W3C recommends lowercase in HTML, and demands lowercase for stricter document types like XHTML.
The HTML5 standard does not require lowercase tags, but W3C recommends lowercase in HTML, and demands lowercase for stricter document types like XHTML.
No comments:
Post a Comment