🎯 Learning Objectives
By the end of this class, students will:
- Understand what links are and how they work in HTML.
- Learn different types of links (internal, external, email, etc.).
- Understand what a file directory is and how relative paths work.
- 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:

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