💅 Linking CSS: Dressing Up Your Skeleton!
If HTML is the skeleton of a building, CSS is the colorful paint, wallpaper, and fancy lights. But how do we connect our CSS paint file to our HTML structure?
We use the `<link>` tag inside the <head>!
Example
1
<link rel="stylesheet" href="styles.css">
