Exercise 1 - Solution & Shoutouts

In this exercise, we will be linking a CSS file to an HTML file correctly.

Make sure to use the correct path to your CSS file in the <link> tag.

Here is the correct way to link a CSS file:

<link rel="stylesheet" href="style.css">

Make sure that the CSS file is in the same directory as your HTML file, or adjust the path accordingly.