Learn CSS Transforms by Building a Penguin - Step 1

Tell us what’s happening:
I have written correct html broiler plate code but it is still showing me error that my link element should be inside head element.

  **Your code so far**
/* file: index.html */
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>HTML 5 Boilerplate</title>
  <link rel="stylesheet" href="styles.css">
</head>
<body>
</body>
</html>
/* file: styles.css */

  **Your browser information:**

User Agent is: Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36

Challenge: Learn CSS Transforms by Building a Penguin - Step 1

Link to the challenge:

You’re running into a bug in the tests. Add a forward slash to the end of the link tag so it closes with /> and you will pass.

1 Like

Thank you! It worked.

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