---
id: 5f356ed69db0a491745e2bb6
title: Step 28
challengeType: 0
dashedName: step-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--
Your `div` should still render. Make sure you haven't malformed the `
` tag.
```js
assert($('div').length === 1);
```
Your `div` element should have the `menu` class.
```js
assert($('div').attr('class').includes('menu'));
```
# --seed--
## --seed-contents--
```html
Cafe Menu
--fcc-editable-region--