Skip to Content
HTMLHTML Basics

HTML Basics

What is HTML test?

HTML (HyperText Markup Language) defines the structure of a web page.

Key Concepts

Document Structure

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Page Title</title> </head> <body> <!-- Content goes here --> </body> </html>

Semantic Elements

ElementPurpose
<header>Top section of the page
<nav>Navigation links
<main>Primary content
<footer>Bottom section of the page

My Notes

Last updated on