HTML Fundamentals

This page demonstrates the core building blocks of HTML.

1. Document Structure

Every page should contain:

2. Semantic Markup

Semantic elements describe the meaning of the content:

Example Article

This is wrapped in an <article> tag. Screen readers and search engines understand it as a standalone piece of content.

3. Text Formatting Elements

You can make text strong (important), emphasized, highlighted, smaller, or show inline code.

You can also create subscript and superscript text.

This is a blockquote - useful for quoting longer passages.

4. Hyperlinks

Internal link (to another page on this site)
External link (opens in new tab)
Link to an ID on this page (fragment indentifier)

5. Lists

Unordered List


Ordered List

  1. Step one
  2. Step two
  3. Step three

Description List

HTML
HyperText Markup Language - the structure of web pages
CSS
Cascading Style Sheets - the presentation of web pages