🎯 Learning Objectives

By the end of this class, students will:

  1. Understand what links are and how they work in HTML.
  2. Learn different types of links (internal, external, email, etc.).
  3. Understand what a file directory is and how relative paths work.
  4. Learn best practices for organizing project files and linking correctly.

🧩 Part 1: What Are Links?

Concept:

Links (or anchors) connect web pages together — like doors connecting rooms in a house.

Syntax:

image.png

Syntax:

<a href="URL">Link Text</a>

Example:

<a href="<https://www.google.com>">Visit Google</a>

👉 When users click, they move to another page or section.

🌐 Types of Links