--- id: 5f356ed69db0a491745e2bb6 title: Part 28 challengeType: 0 dashedName: part-28 --- # --description-- To apply the class's styling to the `div` element, add a `class` attribute to the `div` element's opening tag and set its value to `menu`. # --hints-- Test 1 ```js ``` # --seed-- ## --seed-contents-- ```html Camper Cafe Menu --fcc-editable-region--
--fcc-editable-region--

CAMPER CAFE

Est. 2020

Coffees

``` ```css body { /* background-color: burlywood; */ } h1, h2, p { text-align: center; } .menu { width: 80%; background-color: burlywood; margin-left: auto; margin-right: auto; } ```