<meta charset="utf-8" />
<title>Cafe Menu</title>
<h1>CAMPER CAFE</h1>
<p>Est. 2020 </p>
<meta charset="utf-8" />
<title>Cafe Menu</title>
<h1>CAMPER CAFE</h1>
<p>Est. 2020 </p>
Hmm
What seems to be the issue? Errors? Questions? Some context would be good here.
Could you post a link to the lesson too?
Remember the more info you give the better people can help you.
To let visitors know the cafe was founded in 2020, add a p element below the h1 element with the text Est. 2020.
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Cafe Menu</title>
</head>
<body>
<h1>CAMPER CAFE</h1>
<p>Est. 2020 </p>
</body>
<html>
Test
Sorry, your code does not pass. Don’t give up.
Hint
Your p element should have the text Est. 2020.
Still hard to say for sure without a link to the lesson, but this doesn’t quite match you paragraphs text.
I’ve edited your post for readability. When you enter a code block into a forum post, please precede it with a separate line of three backticks and follow it with a separate line of three backticks to make it easier to read.
You can also use the “preformatted text” tool in the editor (</>
) to add backticks around text.
See this post to find the backtick on your keyboard.
Note: Backticks (`) are not single quotes (’).
This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.