Introduction
Welcome to your first CSS lab! CSS, which stands for Cascading Style Sheets, is the language we use to style an HTML document. It describes how HTML elements should be displayed on screen, on paper, or in other media.
There are three ways to include CSS in an HTML document: inline, internal, and external. The most common and recommended method is to use an external stylesheet. This approach separates your content (HTML) from your presentation (CSS), making your code cleaner, easier to maintain, and reusable across multiple pages.
In this lab, you will learn the fundamental process of styling a webpage using an external stylesheet. You will:
- Create a new CSS file.
- Link that CSS file to an existing HTML document.
- Write a basic CSS rule to change the font of the entire page.
- View your changes in a live web browser.
Let's get started!





