--- id: 5f3ef6e087d56ed3ffdc36be title: Step 61 challengeType: 0 dashedName: step-61 --- # --description-- Ora applica la classe `established` al testo `Est. 2020`. # --hints-- Dovresti assegnare alla classe dell'elemento `p` il valore `established`. ```js assert(code.match(/

/i)); ``` La classe `established` dovrebbe essere sull'elemento con il testo `Est. 2020`. ```js const established = $('.established'); assert(established[0].innerText.match(/Est\.\s2020/i)); ``` Il testo dell'elemento di classe `established` dovrebbe essere in corsivo. ```js assert($('.established').css('font-style') === 'italic'); ``` # --seed-- ## --seed-contents-- ```html Cafe Menu

``` ```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% } ```