Know what is wrong with html boiler plate?

Tell us what’s happening:
Describe your issue in detail here.

**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>Flappy Pinguin</title>
    <link rel="stylesheet" href="style/css">
</head>
<body>
    
</body>
</html>
/* 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/103.0.0.0 Safari/537.36

Challenge: Step 1

Link to the challenge:

You’ve got two typos here.

Also, there is currently a bug in the tests and you must have a forward slash at the end of the <link> tag just before the closing >.

If you fix the two issues above then you will get one more hint that tells you exactly what to add to the link. Again, this is actually a bug because it is not mandatory to add this particular attribute to link in a CSS file.

I believe both of these bugs are in the process of being fixed but the fixes haven’t quite made it to production yet.

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