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
| Element | Purpose |
|---|---|
<header> | Top section of the page |
<nav> | Navigation links |
<main> | Primary content |
<footer> | Bottom section of the page |
My Notes
Last updated on