HTML Tutorial

The language for building web pages.

HTML Basic

HTML Basic Examples

Every HTML document must start with a document type declaration: <!DOCTYPE html>. The HTML document itself begins with <html> and ends with </html>.

Basic Structure:

  • <!DOCTYPE html> - Document type
  • <html> - Root element
  • <head> - Meta information
  • <title> - Page title (shown in browser tab)
  • <body> - Visible page content

Try It Yourself

Edit the code below and click Run to see the result live.

Source Code
Result
Topics