Learn CSS Animation by Building a Ferris Wheel - Step 1

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

Your code so far
it tells me to put my link within my head element I do not understand where i’m wrong at

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

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36 Edg/105.0.1343.42

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

Link to the challenge:

Html should be the outermost element (all other elements go inside the html element.

Body should go after the head. (Makes sense right, head is at the top, body below it).

Try that and see if you make more progress.

that makes perfect sense!! thank you for dumming that down for me I appreciate it.

1 Like

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