---
id: 615f423cf65d5864132a0956
title: Step 21
challengeType: 0
dashedName: step-21
---
# --description--
Give your `h1` element a `class` attribute set to `bold`. This will make the text bold again.
# --hints--
Your `h1` element should have a `class` attribute set to `bold`.
```js
assert(document.querySelector('h1')?.classList?.contains('bold'));
```
# --seed--
## --seed-contents--
```html