Tell us what’s happening:
I’m almost positive that this is the right code for this step. I’ve tried restarting my browser and disabling extensions. Is there something I’m missing?
Your code so far
<!-- file: index.html -->
<!DOCTYPE html>
<html lang="en">
<!-- User Editable Region -->
<head>
<meta charset="utf-8" />
<title>Cafe Menu</title>
<link rel="stylesheet" href="styles.css">
</head>
<!-- User Editable Region -->
<body>
<main>
<h1>CAMPER CAFE</h1>
<p>Est. 2020</p>
<section>
<h2>Coffee</h2>
</section>
</main>
</body>
</html>
You’re probably getting bit by this warning on the main RWD curriculum page:
“Note: Some browser extensions, such as ad-blockers and dark mode extensions can interfere with the tests. If you face issues, we recommend disabling extensions that modify the content or layout of pages, while taking the course.”
Usually this is due to a dark mode extension, or something similar, that is adding extra HTML elements behind the scenes, such as extra link elements. The solution is to either disable those extensions or use a different “clean” browser.
By any chance, are you getting the following hint?
“You should have one self-closing link element.”
If so then that’s a sure bet that an extension is adding extra link elements.