Address street text issueDesign a Cafe Menu - Step 89

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

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

            h1 {

font-size: 40px;
margin-top: 0px;
margin-bottom: 15px;
}

            h2 {

font-size: 30px;
}

            hr {

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

            .bottom-line {

margin-top: 25px;
}

            .established {
                font-style: italic;
            }

body {
    font-family: sans-serif;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    padding: 20px;
    background-image: url("https://cdn.freecodecamp.org/curriculum/css-cafe/beans.jpg");
}               
                                    
.menu {
    width: 80%;
    max-width: 500px;
                margin-left: auto;
                margin-right: auto;
                padding: 20px;
                        }

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

        .price {
    text-align: right;
    width: 25%;
    font-size: 18px;
}

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

/* footer */
footer {
    font-size: 14px;
}

address {
    font-style: noarmal;
}

.address {
        margin-bottom: 5px;
}
}

a {
    color: black;
}

a:visited  {
                color: black;
}

a:hover {
    color: brown;
}

a:active {
color: brown;
}efreecodecamp.org/learn/full-stack-developer/workshop-cafe-menu/step-89### Tell us what's happening:

hi. trying to do the address for step 89 on design a cafe menu. not liking it, and using a screen reader and blind.

Your code so far

<!-- file: index.html -->

<!-- User Editable Region -->

<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="Styles.css">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Cafe Menu</title>
</head>    
<body>
<div class="menu">
<main>
<h1>CAMPER CAFE</h1><p class="established"><i>Est. 2020</i></p>
<hr>
<section>
<h2>Coffee</h2>
<article class="item">
<p class="flavor">French Vanilla</p><p class="price">3.00</p>
    </article>
<article class="item">
<p class="flavor">Caramel Macchiato</p><p class="price">3.75</p>
</article>  
<article class="item">
<p class="flavor">Pumpkin Spice</p><p class="price">3.50</p>
</article>
<article class="item">
<p class="flavor">Hazelnut</p><p class="price">4.00</p>
</article>
<article class="item">
<p class="flavor">Mocha</p><p class="price">4.50</p>
</article>
</section>
<section>
<h2>Desserts</h2>
<article class="item"> 
<p class="dessert">Donut</p><p class="price">1.50</p>        
</article>
<article class="item"> 
<p class="dessert">Cherry Pie</p><p class="price">2.75</p>
</article>
<article class="item"> 
<p class="dessert">Cheesecake</p><p class="price">3.00</p>
</article>
<article class="item"> 
<p class="dessert">Cinnamon Roll</p><p class="price">2.50</p>
</article>
</section>
</main>
<hr class="bottom-line">
<footer>
<address>
<p class="address"><a href="https://www.freecodecamp.org" <p class=""target="_blank">Visit our website</a></p>    
<p class="address">123 Free Code Camp Drive</p>

</address>    
</footer>
</div>
</body>
</html>


    



<!-- User Editable Region -->

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

h1 {
  font-size: 40px;
  margin-top: 0;
  margin-bottom: 15px;
}

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

address {
  font-style: normal;
}

.address {
  margin-bottom: 5px;
}

a {
  color: black;
}

a:visited {
  color: black;
}

a:hover {
  color: brown;
}

a:active {
  color: brown;
}

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/137.0.0.0 Safari/537.36

Challenge Information:

Design a Cafe Menu - Step 89
https://www.freecodecamp.org/learn/full-stack-developer/workshop-cafe-menu/step-89`hi. doing the design a cafe menu. step 89. and now it is not liking the address for some reason. using jaws for windows and blind. using google chrome on a hp laptop using windows 11 pro. so will paste the error message, my visual studio code, my css code and the link to the step. can any one help.
marvin.
ps: pasting below.

Your .address element should have the text 123 Free Code Camp Drive .`

Hi there,
It’s recommended to only add, remove, or modify exactly what the lesson asks—making extra or incorrect changes can trigger an error. In your code, the main issue is inside the footer:

  • There’s a syntax error in the anchor tag. You’ve accidentally added an extra p tag inside the a tag, which is invalid HTML and not part of what the lesson asked you to do.

  • Tip: Recheck the lesson’s instructions about adding the anchor tag correctly inside a paragraph.

Stick to what the challenge asks step by step, and it should pass. You’re close—keep it up!

hi. totally confused. can some one explain what i am doing wrong. and will paste the error below. totally frustrated and not passing. and not sure why. trying and tyring, but just getting confused and frustrated.
can some one show me what i am doing wrong and how to get it right. not liking the address class in the address. so totally blind and using a screen reader. and not sure where the correct code to put in the editor.
can some one help? and then do the p tag around the address for the class and not working. so totally confused. please some kind soul be able to point me out how to get this to work. been trying for the past two to three hours. and still not passing. just stupid, blind or dont understand, trying too hard or just tired or not understanding.
marvin.
ps: pasting the error message and the line of code.

Sorry, your code does not pass. Try again.

Your .address element should be your p element.

hi, did delete the other code in the editor. still not liking. will go and fix my sintax error in my local code, reset, totally select and delete and then paste and see if it passes, if not, then need extra help.
sorry.
trying my best. my stupid fault.
sorry.
marvin.

No worries, Marvin! Everyone makes mistakes, even experts. Keep trying, and if you need help, just ask!

hi. heres the error message. dont understand. please help. what am i doing wrong. did reset the lesson. just getting frustrated. heres the error message. i dont understand what it is saying. how to get the correct code. can you put the correct code example, so then i can then ehar how to get it right. did take out the extra wrong p element. pasting the error message below.
frustrated and tried about 30 or more times. so what am i missing. frustrated.
dont know how to get this to work. just dumb, stupid, blind or not able to get it or not getting it. sorry, tried for the past two to three hours on this stupid challenge and fed up.
help?
marvin.
You should apply the class=“address” attribute.
and i do the and not liking it. so let me know how to get this to work, driving me nuts. maybe simple to you sighted people out there, but not able to see if a real headache. and having to figure it out using a screen reader. some times the message are straight forward, this one is not.
. .

Can you share your updated code?

hi. i need your help. at my wits end and cannot figure it out. trying and trying. did research on google and the code looks similar. thought maybe i was doing something wrong. so need your help.
sorry.
marvin.

If you’ve updated your code, please share it here so we can review it and help identify any issues.

type or paste code here
```hi. sorry. try again. jaws is having a fit. will try again, paste my html and css. sorry. and you will also get the error.
sorry.
<!DOCTYPE html>

<html lang="en">

<head>

<link rel="stylesheet" href="Styles.css">

<meta charset="UTF-8">

<meta name="viewport" content="width=device-width, initial-scale=1.0" />

<title>Cafe Menu</title>

</head>

<body>

<div class="menu">

<main>

<h1>CAMPER CAFE</h1><p class="established"> <i>Est. 2020</i></p>

<hr>

<section>

<h2>Coffee</h2>

<article class="item">

<p class="flavor">French Vanilla</p><p class="price">3.00</p>

</article>

<article class="item">

<p class="flavor">Caramel Macchiato</p><p class="price">3.75</p>

</article>

<article class="item">

<p class="flavor">Pumpkin Spice</p><p class="price">3.50</p>

</article>

<article class="item">

<p class="flavor">Hazelnut</p><p class="price">4.00</p>

</article>

<article class="item">

<p class="flavor">Mocha</p><p class="price">4.50</p>

</article>

</section>

<section>

<h2>Desserts</h2>

<article class="item">

<p class="dessert">Donut</p><p class="price">1.50</p>

</article>

<article class="item">

<p class="dessert">Cherry Pie</p><p class="price">2.75</p>

</article>

<article class="item">

<p class="dessert">Cheesecake</p><p class="price">3.00</p>

</article>

<article class="item">

<p class="dessert">Cinnamon Roll</p><p class="price">2.50</p>

</article>

</section>

</main>

<hr class="bottom-line">

<footer>

<address>

<p><a href="https://www.freecodecamp.org" target="_blank">Visit our website</a></p>

<p>123 Free Code Camp Drive</p>

</address>

</footer>

</div>

</body>

</html>    h1,h2, p {
        text-align: center;
                }

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

                h1 {
font-size: 40px;
margin-top: 0px;
margin-bottom: 15px;
                }

                h2 {
font-size: 30px;
                }

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

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

                .established {
                    font-style: italic;
                }

    body {
        font-family: sans-serif;
        width: 80%;
        margin-left: auto;
        margin-right: auto;
        padding: 20px;
        background-image: url("https://cdn.freecodecamp.org/curriculum/css-cafe/beans.jpg");
    }               
                                        
    .menu {
        width: 80%;
        max-width: 500px;
                    margin-left: auto;
                    margin-right: auto;
                    padding: 20px;
                            }

    .flavor, .dessert {
        text-align: left;
                    width: 75%;
    } 
    
            .price {
        text-align: right;
        width: 25%;
        font-size: 18px;
    }

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

    /* footer */
    footer {
        font-size: 14px;
    }

    address {
        font-style: noarmal;
    }

    .address {
            margin-bottom: 5px;
    }
    }

    a {
        color: black;
    }

    a:visited  {
                    color: black;
    }

    a:hover {
        color: brown;
    }

    a:active {
    color: brown;
    }Sorry, your code does not pass. You're getting there.

You should apply the class="address" attribute.

Brother, use the </> button in the editor or wrap your code in triple backticks (```), it’s not double quotes (“”). This way, your code formatting stays clean and clear!

Exactly, now follow the lesson instructions precisely:

Now apply the address class to the p element containing the street address 123 Free Code Camp Drive .

Do not add, remove, or modify anything else in the code. Just that one small change.

hi brother. sorry. do control e. but maybe my screen reader is having a fit, and dont want to have to close then have to try to navigate. so if you cannot help. will then email support at free code camp and wait for their reply tomorrow if you cannot help. i know i am the only blind person on the forum. sorry for being a pain.
so what am i doing wrong? if you cannot figure it out, then will wait for them as in adelaide, australia and 13.5 hours ahead of new yorik and 17.5 hour ahead of los angelos.
thank you for trying to help me out. sorry about the formatting, just having a bad day, been trying to get this to work for the past three hours. so maybe just give it up for today and maybe wait for support to email me. thanks for trying your best, and sorry for putting up with me.
marvin.

1 Like

no worries at all — you’re definitely not a pain! Everyone hits frustrating moments, and it’s totally okay to take a break when things get tough. You’re doing great by reaching out and trying your best. I didn’t know you’re blind — sorry if I wasn’t able to explain or help clearly, but I tried my best to assist you.

Take care, and don’t hesitate to reach out anytime!

hi. got it. stupid me. thanks. got it. will learn from this. thanks.
marvin.

1 Like

please do not open multiple topics for the same step, it makes it harder to help you, and it’s against the rules of the forum

note that writing an email to support doesn’t garantee immediate response, it can take a few days, and if you are writing to ask for help with solving a step you will be redirected to the forum

if you need responses so quickly you can also consider joining the discord server.