--- id: 5f46e7a4750dd05b5a673920 title: Step 88 challengeType: 0 dashedName: step-88 --- # --description-- Ora applica la classe `address` all'elemento `p` contenente l'indirizzo. # --hints-- Dovresti applicare l'attributo `class="address"`. ```js assert(code.match(/class=('|")address\1/i)); ``` L'elemento `.address` dovrebbe essere il tuo elemento `p`. ```js assert($('.address')[0].tagName === 'P'); ``` L'elemento `.address` dovrebbe avere il testo `123 Free Code Camp Drive`. ```js assert($('.address')[0].innerText.match(/123 Free Code Camp Drive/i)); ``` # --seed-- ## --seed-contents-- ```html Cafe Menu ``` ```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 { margin-bottom: 5px; } a { color: black; } a:visited { color: black; } a:hover { color: brown; } a:active { color: brown; } ```