Learn Basic CSS by Building a Cafe Menu - Step 3

It’s not accepting it I don’t know what to do

Your code so far

<!DOCTYPE html>
<html lang="en">
  <head> <meta="charset">=value "utf-8" </meta>
    <title>Cafe Menu</title>
  </head>
</html>

Your mobile information:

SM-A032F - Android 13 - Android SDK 33

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

Link to the challenge:

Hello! Looks like the syntax for your meta element is a little off. I might suggest resetting the challenge and starting from scratch. Make sure any attributes you have for an element are defined inside the tags for the given element.

1 Like

Restructure your meta syntax

Mod edit: solution code removed

@OdhiamboOuko

It is great that you solved the challenge, but instead of posting your full working solution, it is best to stay focused on answering the original poster’s question(s) and help guide them with hints and suggestions to solve their own issues with the challenge.

We are trying to cut back on the number of spoiler solutions found on the forum and instead focus on helping other campers with their questions and definitely not posting full working solutions.


@headbreak51

1 Like

Still not sending it through

  <head> <meta="charset">value="utf-8"
    <title>Cafe Menu</title>
  </head>

That is still not the correct syntax. Please read the MDN article and compare your syntax to it.


I’ve edited your code 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 (').

Hey there!
Example:

<tag attribute="value">

You need a meta tag with charset attribute and value utf-8
@headbreak51