Nest a link element within the head

Help!
My link won’t work despite reviewing multiple times

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

Test

Sorry, your code does not pass. You’re getting there.

Hint

Your link element should have a rel attribute with the value stylesheet.

  **Your code so far**
/* file: index.html */
<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <metaname="viewport"content="width=device-widthinitial-scale=1.0">
  <link rel:"stylesheet" href:"styles.css" type:"text/css">
  <title>Colored Markers</title>
</head>
<body>
  <h1>CSS Color Markers</h1>
</body>
</html>
/* file: styles.css */

  **Your browser information:**

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

Challenge: Step 7

Link to the challenge:

1 Like

Those attributes in the links uses these:
rel="…" not rel:"", href="…" not href:""
You only use colon(:slight_smile: in css property declarations.

1 Like

So so sorry
Thank you very much
Very grateful indeed!

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