RWD (beta) Ferris Wheel step 1

Step 1

This is very basic setup boilerplate. The html element is clearly below DOCTYPE.

Step 1
Begin with the standard boilerplate. Add your DOCTYPE declaration, your html element, 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 CSS Ferris Wheel.
<!DOCTYPE html>

<html>
  <head>
    <meta charset="UTF-8" />
    <link rel="stylesheet" href="./styles.css" />
    <title>CSS Ferris Wheel</title>
  </head>
  <body></body>
</html>
✖️ You're getting there. This may help:
Your html element should be below the DOCTYPE declaration.

Thank you for helping make FCC better. Bugs can be reported as GitHub Issues. Whenever reporting a bug, please check first that there isn’t already an issue for it and provide as much detail as possible.

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