--- id: 5f3ef6e087d56ed3ffdc36be title: Step 62 challengeType: 0 dashedName: step-62 --- # --description-- Now apply the `established` class to the `Est. 2020` text. # --hints-- You should set the `class` of the `p` element to `established`. ```js assert(code.match(/

/i)); ``` Your `established` class should be on the element with the text `Est. 2020`. ```js const established = $('.established'); assert(established[0].innerText.match(/Est\.\s2020/i)); ``` Your `established` class element should have italic text. ```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% } ```