Introduction to HTML - Notes
HTML (HyperText Markup Language) is the foundation of all web pages. Understanding its syntax and structure is crucial to building websites.
Key points:
- Elements are written using tags like
<h1>
,<p>
, and<a>
. - HTML documents have a
<head>
and a<body>
section. - Headings (
<h1> - <h6>
) define content hierarchy. - Paragraphs (
<p>
) contain text blocks.
Practice creating simple pages using these tags, and experiment with nesting to understand the document structure better.
Explore the official documentation here: MDN HTML Docs.