More Fonts

https://www.codecademy.com/courses/learn-html-css/lessons/css-fonts/exercises/more-fonts

Error message says ‘Did you add a link to the Roboto font?’
What am i missing?



<head>
    <title>The Rise of Soccer in The US</title>
    <link href='https://fonts.googleapis.com/css?family=Roboto:100' type="text/css" rel="stylesheet" >
    <link href="style.css" type="text/css" rel="stylesheet">
</head>


Ok so easiest way to fix this is to copy and paste the exact https://fonts.googleapis.com/css?family=Roboto:100 from the lesson into your code and then double quote it. that took care of your problem when I copy your code and put it into my lesson browser.

2 Likes

Thanks that did solve the problem but does it suppose to be happen or not? This is the first time an error occurred because of the double quote.

1 Like

It may have been just your line of code for fonts was just slightly off due to not having double quotes or not copying it over exactly. But yes that is supposed to happen because it wants you to do it exactly.

2 Likes

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