---
id: 61fd70336ebb3e4f62ee81ba
title: Step 8
challengeType: 0
dashedName: step-8
---
# --description--
HTML tables use the `caption` element to describe what the table is about. The `caption` element should always be the first child of a `table`, but can be positioned with the `caption-side` CSS property.
Add a `caption` element to your first `table`, and give it the text `Assets`.
# --hints--
Your first `table` element should have a `caption` element.
```js
assert(document.querySelector('table')?.children?.[0]?.localName === 'caption');
```
Your `caption` element should have the text `Assets`.
```js
assert(document.querySelector('caption')?.textContent === 'Assets');
```
# --seed--
## --seed-contents--
```html