Learn CSS Animation by Building a Ferris Wheel - Step 1

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

I’ve reached the point of even copying my boilerplate from previous exercises but it’s still giving me the error:

Hint

Your link element should be within your head element.

I’m pretty sure my link element is within the head element?

Your code so far

<!-- file: index.html -->
<!DOCTYPE html>
<html lang="en"></html>
  <head>
    <link rel="stylesheet" href="./styles.css"></link>
    <meta charset="UTF-8">
    <title>Ferris Wheel</title>
  </head>
  <body></body>
/* file: styles.css */

Your browser information:

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/108.0.0.0 Safari/537.36

Challenge: Learn CSS Animation by Building a Ferris Wheel - Step 1

Link to the challenge:

The closing html tag </html> goes at the end of the code. ‘link’ element is self-closing, so it doesn’t need the closing tag </link>.

1 Like

Thanks so much. That worked!

1 Like

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