French Vanilla
3.00
--- 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