Getting an error in this one. I have disabled all extensions and double checked multiple times but I can’t get past this one.
# Step 2
Add a title
element with the text Magazine
, a link
element for the https://fonts.googleapis.com/css?family=Anton%7CBaskervville%7CRaleway&display=swap
font stylesheet, a link
for the https://use.fontawesome.com/releases/v5.8.2/css/all.css
FontAwesome stylesheet, and a link
for your ./styles.css
stylesheet.
Your font stylesheet will load three separate fonts: Anton
, Baskervville
, and Raleway
.
Sorry, your code does not pass. Don’t give up.
Your link
element should be within your head
element.
<head>
<title="Magazine"/>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<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’m sure I’m missing something simple, but I just can’t see it.