Learn CSS Grid by Building a Magazine - Step 2

Tell us what’s happening:
Describe your issue in detail here.

Your code so far

<!-- 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>Magazine</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="stylesheet" href="styles.css">
  </head>

<!-- User Editable Region -->

  <body>
  </body>
</html>
/* file: styles.css */

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 6.3; Win64; x64; rv:109.0) Gecko/20100101 Firefox/112.0

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

Link to the challenge:

please explain what you need help with :slight_smile:

you seem to have an extra space in one of your hrefs

my challenges are the google font and font awesome links are the problems why I can’t pass

my code:

<head>
    <meta charset="UTF-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <title>Magazine</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="stylesheet" href="styles.css">
  </head>

I copied and pasted your last answer in and found it passed once I took out the space at the beginning of the link :slight_smile:
you have the correct answer, its just the space thats messing it up :frowning:

sorry, the first answer not the last one

I deleted it and write the code back and it passed.

thank you.

1 Like