Learn Basic CSS by building Cafe Menu STEP 79

Step 79

body {
  background-image: url(https://cdn.freecodecamp.org/curriculum/css-cafe/beans.jpg);
  font-family: sans-serif;
  padding: 20px;
}

h1 {
  font-size: 40px;
}

h2 {
  font-size: 30px;
}

.established {
  font-style: italic;
}

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

.menu {
  width: 80%;
  background-color: burlywood;
  margin-left: auto;
  margin-right: auto;
  padding: 20px;
  max-width: 500px;
}

hr {
  height: 2px;
  background-color: brown;
  border-color: brown;
}

.bottom-line {
  margin-top: 25px;
}

h1, h2 {
  font-family: Impact, serif;
}

.item p {
  display: inline-block;
  margin-top: 5px;
  margin-bottom: 5px;
  font-size: 18px;
}

.flavor, .dessert {
  text-align: left;
  width: 75%;
}

.price {
  text-align: right;
  width: 25%
}

/* FOOTER */

footer {
  font-size: 14px;
}

footer a{
  color:black;
}

why doesn’t it accept this part as correct?

footer a{
  color:black;
}

welcome to the forum @imhor1zon !
You have to change all links, so select only the anchor element.

Hi @tonmoy_das009 . I need help. I really don’t understand why the code doesn’t work. Is there any other way to explain why the code doesn’t work.

Thank You.

Please create your own topic when you have specific questions about your own challenge code. Only respond to another thread when you want to provide help to the original poster of the other thread or have follow up questions concerning other replies given to the original poster.

The easiest way to create a topic for help with your own solution is to click the Help button located on each challenge. This will automatically import your code in a readable format and pull in the challenge url while still allowing you to ask any question about the challenge or your code.

Thank you.

@Ray13 Noted I’m sorry. It will not happen again.
Thank you I read the @tonmoy_das009 reply again I now see what I did wrong.

Thank you,

1 Like

You’re welcome! Good luck in your further coding