Learn Basic CSS by Building a Cafe Menu - Step 16

I followed YouTube yet it’s still wrong. I’m lost.

Your code so far

/* file: index.Ext.html */
<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="utf-8" />
    <title>Cafe Menu</title>
    <link rel='stylesheet' href= 'style.css'>
  </head>
  <body>
    <main>
      <h1>CAMPER CAFE</h1>
      <p>Est. 2020</p>
      <section>
        <h2>Coffee</h2>
      </section>
    </main>
  </body>
</html>
/* file: styles.Ext.css */
<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="utf-8" />
    <title>Cafe Menu</title>
    <link rel='stylesheet' href= 'style.css'>
  </head>
  <body>
    <main>
      <h1>CAMPER CAFE</h1>
      <p>Est. 2020</p>
      <section>
        <h2>Coffee</h2>
      </section>
    </main>
  </body>
</html>

Your mobile information:

iPhone - iOS17.1

Challenge: Learn Basic CSS by Building a Cafe Menu - Step 16

Link to the challenge:

Hey buddy. Can you double-check your style sheet for me? I think it’s possible you sent your HTML file contents twice.

1 Like

Hello @Silentg393 !

I found a small typing error in the code provided.

Do not leave a space after the = behind the href and the value should be styles.css instead of ‘style.css’

I hope this helps you move on.

Keep up the good progress @Silentg393