Learn Basic CSS by Building a Cafe Menu - Step 62

Tell us what’s happening:
Describe your issue in detail here.
sigh what is the problem here please someone tell me and also i want to fix it so please tell me the solution to i.
Your code so far

/* file: index.Ext.html */
body {
  background-image: url(https://cdn.freecodecamp.org/curriculum/css-cafe/beans.jpg);
  font-family: sans-serif;
}

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;
}

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

.item p {
  display: inline-block;
}

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

.price {
  text-align: right;
  width: 25%
}
/* file: styles.Ext.css */
body {
  background-image: url(https://cdn.freecodecamp.org/curriculum/css-cafe/beans.jpg);
  font-family: sans-serif;
}

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;
}

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

.item p {
  display: inline-block;
}

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

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

Your mobile information:

9013X_EEA - Android 10 - Android SDK 29

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

Link to the challenge:

Hello!

A very small typing error behind your h1 selector.

I repaired the error and now is done thank you for the solution

1 Like

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