Thanks for the welcome. Here is a summary of what I am seeing:
I’m in Step 61. The styles.css is showing the following:
.established {
font-style: italic;
}
index.html is showing:
<p class="established">Est. 2020</p>
The screen shows:
Hint
Your established class element should have italic
Hope that’s helpful.
Barry
Tell us what’s happening:
Describe your issue in detail here.
Your code so far
<!-- file: index.html -->
<!-- User Editable Region -->
<p class="established">Est. 2020</p>
<!-- User Editable Region -->
/* file: styles.css */
body {
background-image: url(https://cdn.freecodecamp.org/curriculum/css-cafe/beans.jpg);
font-family: sans-serif;
}
.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 browser information:
User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36
Challenge: Learn Basic CSS by Building a Cafe Menu - Step 61
Link to the challenge: