Learn CSS Grid by Building a Magazine - Step 2

heyyy, so i’ve tried this a million different ways, pulled up every webpage i can find and read through every forum post and i just cannot figure out what’s gone wrong :frowning:

<!-- file: index.html -->
<!DOCTYPE html>
<html lang="en">

<!-- User Editable Region -->

  <head>
    <meta charset="UTF-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <title>Magizine</title>
    <link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Anton%7CBaskervville%7CRaleway&display=swap">
    <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.8.2/css/all.css" >
    <link rel="styleshhet" href="./styles.css">
  </head>

<!-- User Editable Region -->

  <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/108.0.0.0 Safari/537.36 OPR/94.0.0.0

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

Link to the challenge:

You have some typos in your code.

stylesheet is mistyped on your third link element

I had to think hard on that one, also. Use an * selector and put the fonts in the style sheet.

Chris