Bummer! This is just a preview. You need to be signed in with an account to view the entire instruction.

Well done!

You have completed (UPI) Chapter 1: Foundations of HTML and Web Development!

Instruction

Basic Structure of an HTML Document

An HTML document has two main components: the DOCTYPE declaration and the document tree.

  1. DOCTYPE Declaration:
   <!DOCTYPE html>
  • This first line tells the browser that the document uses HTML5. Although DOCTYPE can be in uppercase or lowercase, it’s traditionally capitalized.
  • Every HTML document should start with this line.
  1. **...