Having consistent, clean, and tidy HTML code makes it easier for others to read and understand.
Begin your document by declaring the document type as the first line.
For HTML, ensure you use the correct document type declaration.
<!DOCTYPE html> |
While HTML permits mixing uppercase and lowercase letters in element names, it’s advisable to opt for lowercase names. Here’s why:
<body> <p>This is a paragraph.</p> </body> |
<BODY> <P>This is a paragraph.</P> </BODY> |