Curriculum
Course: HTML Basic
Login

Curriculum

HTML Basic

HTML Introduction

0/1

HTML Editors

0/1

HTML Attributes

0/1

HTML Paragraphs

0/1

HTML Formatting

0/1

HTML Comments

0/1

HTML Favicon

0/1

HTML Page Title

0/1

HTML Iframes

0/1

HTML Java Script

0/1

HTML File Paths

0/1

HTML Symbols

0/1
Text lesson

HTML Style Guide

Having consistent, clean, and tidy HTML code makes it easier for others to read and understand.

Always Declare Document Type

Begin your document by declaring the document type as the first line.

For HTML, ensure you use the correct document type declaration.

<!DOCTYPE html>

Use Lowercase Element Names

While HTML permits mixing uppercase and lowercase letters in element names, it’s advisable to opt for lowercase names. Here’s why:

  • Mixing uppercase and lowercase names can appear inconsistent.
  • Developers typically prefer using lowercase names for consistency.
  • Lowercase names offer a cleaner aesthetic.
  • Writing in lowercase is generally easier and more intuitive.

Good:

<body>
<p>This is a paragraph.</p>
</body>

Bad:

<BODY>
<P>This is a paragraph.</P>
</BODY>