Learn Basic CSS by Building a Cafe Menu - Step 23

I do what the imstructions tell me to word by word but it say that its wrong and keeps giving me the same tip

Your code so far

/* file: index.Ext.html */
body {
  /*
  background-color: burlywood;
  */
}

h1, h2, p {
  text-align: center;

#menu {
  background-color:burlywood;
  width: 300px; 
}
    
/* file: styles.Ext.css */
body {
  /*
  background-color: burlywood;
  */
}

h1, h2, p {
  text-align: center;

#menu {
  background-color:burlywood;
  width: 300px;
1 Like

You appear to have created this post without editing the template. Please edit your post to Tell us what’s happening in your own words.
Learning to describe problems is hard, but it is an important part of learning how to code.
Also, the more you say, the more we can help!

Hello!
Next time you create a post, please try explaining your issue.

Great job on your code. It seems that you did not close your h1, h2, p selector with a curly bracket. Once you close it your code should pass.

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