← Lesson
BitWithBite
Full-Stack · Quick Reference

Lesson 3 — Headings, Lists & Links Cheat Sheet

Full-Stack
In one line: Headings (h1-h6) build a document outline, lists group related items, and anchor tags link pages together.

Key Ideas

1h1-h6. One h1 per page; never skip levels for styling reasons.
2<ul> unordered list — bullet points, order doesn't matter.
3<ol> ordered list — numbered, sequence matters.
4<li> a single list item, nested inside ul or ol.
5<a href="..."> the anchor tag — creates a hyperlink.

Examples

<h1>Page Title</h1> <h2>Section</h2> <ul> <li>First item</li> <li>Second item</li> </ul> <a href="/about.html">About</a> <a href="https://ex.com" target="_blank">External</a>