Learn CSS Grid by Building a Magazine - Step 2

**What am I missing? I keep getting error message.

  **Your code so far**
/* file: index.html */
<!DOCTYPE html>
<html lang="en">
 <head>
  <meta charset="UTF-8" />
  <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  <title>Magazine</title>
  <link rel="https://fonts.googleapis.com/css?family=Anton%7CBaskervville%7CRaleway&display=swap" rel="stylesheet">
  <link rel="stylesheet" href="style.css">
  <link rel="https://use.fontawesome.com/releases/v5.8.2/css/all.css" rel="stylesheet"> 
</head>
<body>
</body>
</html>
/* file: styles.css */

  **Your browser information:**

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36

Challenge: Learn CSS Grid by Building a Magazine - Step 2

Link to the challenge:

You need to add 3 link elements <link with the given values, don’t forget to add a rel attribute with the value of the target file

I have the 3 link elements but still keep on getting this error message;
Hint;
Your three link elements should have a rel attribute with the value stylesheet.

do exactly what the hint tells you to do in your link elements

This is my code on that challenge. I don’t know what else to do.

Magazine

you need to give your <link> elememts which are self-closing a attribute of rel and a value and also a href with a link value

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