Learn CSS Animation by Building a Ferris Wheel - Step 1

Tell us what’s happening:
Describe your issue in detail here.
my link element is already within my head element but it still indicates an error. where is the problem. some help please!

  **Your code so far**
/* file: index.html */
<!DOCTYPE html>
<html lang="en"></html>
<head>
<link />
</head>
<body></body>
<meta charset="UTF-8"><meta/>
<title>Ferris Wheel</title>

/* 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

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

Link to the challenge:

I see you have created an html element. Do you think the closing tag for html should be on the first line?

meta is a self closing tag, so also fix this line

Your meta and title elements should be nested in ur head element

your html closing tag should be at the end of your code

your link element should be used to link your css file to ur html file.
hint: it should have a rel attribute and stylesheet value
it should also have a href attribute.

Hope this helps

Do you need help understanding the hints?

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