Not sure when I made a mistake?
Begin with the standard boilerplate. Add your DOCTYPE
declaration, your html
element with the language set to English, your head
and body
elements.
Add your meta
element for the correct charset
, your title
element, and a link
element for the ./styles.css
file.
Set the title
to Ferris Wheel
.
<!-- file: index.html -->
<!-- User Editable Region -->
<!DOCTYPE html>
<html lang="en"></html>
<head>
<link rel="stylesheet" href="styles.css">
<meta charset="UTF-8"></meta>
<title>Ferris Wheel</title>
</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/605.1.15 (KHTML, like Gecko) Version/15.4 Safari/605.1.15
Challenge: Learn CSS Animation by Building a Ferris Wheel - Step 1
Link to the challenge: