Learn Basic CSS by Building a Cafe Menu - Step 23

Tell us what’s happening:
Describe your issue in detail here.

Your code so far

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

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

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

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

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

Your mobile information:

SM-A325F - Android 13 - Android SDK 33

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

Link to the challenge:

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! Welcome to the forum.
Good job on your code so far.

Your h1, h2, p selector does not have a closing curly bracket. Once adding that, your code should pass.

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