--- id: 5f356ed69db0a491745e2bb6 title: Part 28 challengeType: 0 --- ## 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`.
## Tests
```yml tests: - text: Test 1 testString: '' ```
## Challenge Seed
```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; } ```