Learn Intermediate CSS by Building a Cat Painting - Step 3

I really don’t understand what’s happening here:.

Your code so far

/* file: index.Ext.html */
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>fCC Cat Painting</title>
  <link rel="stylesheet" href="./styles.css">
</head>
<body></body>
</html>

Challenge: Learn Intermediate CSS by Building a Cat Painting - Step 3

Link to the challenge:

Hello! @bada_lincoln

We are linking an external CSS file using the “link” tag. This allows us to separate the styling from the HTML structure. The “rel” attribute is used to describe the relationship between the current doc and the linked resource. In this case it is a style sheet, a CSS file.

Hope this helps!

Happy Coding :slight_smile:

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.