Learn CSS Animation by Building a Ferris Wheel - Step 1

Tell us what’s happening:
I am stuck on step one. It keeps telling me that my link element is not in my head element. However I am pretty certain that it is. Anybody have a solution?

I am using brave browser, tried on google chrome and on safari mobile.

kept getting “Your Link element should be within your Head element”.

Your code so far

<!-- file: index.html -->

<!-- User Editable Region -->

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

<!-- User Editable Region -->

/* 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/101.0.4951.41 Safari/537.36

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

Link to the challenge:

Your head and body are outside of the html, so the tests cannot find them.

You sir, are a very kind man. Thank you.

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