2021-12-03 14:20:34 -08:00
---
2022-02-18 10:15:16 -08:00
id: 61fd71d596e8f253b9408b39
2021-12-03 14:20:34 -08:00
title: Step 10
challengeType: 0
dashedName: step-10
---
# --description--
2022-02-18 10:15:16 -08:00
The `tr` element is used to indicate a table row. Add a `tr` element within your `thead` element. In your new `tr` element, add a `td` element, followed by three `th` elements.
The `td` element indicates a data cell, while the `th` element indicates a header cell.
2021-12-03 14:20:34 -08:00
# --hints--
2022-02-18 10:15:16 -08:00
Your `thead` element should have a `tr` element.
2021-12-03 14:20:34 -08:00
```js
2022-02-18 10:15:16 -08:00
assert(document.querySelector('thead')?.children?.[0]?.localName === 'tr');
2021-12-03 14:20:34 -08:00
```
2022-02-18 10:15:16 -08:00
Your `tr` element should have a `td` element as the first child.
2021-12-03 14:20:34 -08:00
```js
2022-02-18 10:15:16 -08:00
assert(document.querySelector('tr')?.children?.[0]?.localName === 'td');
2021-12-03 14:20:34 -08:00
```
2022-02-18 10:15:16 -08:00
Your `tr` element should have three `th` elements, after the `td` element.
2021-12-03 14:20:34 -08:00
```js
2022-02-18 10:15:16 -08:00
assert(document.querySelector('tr')?.children?.[1]?.localName === 'th');
assert(document.querySelector('tr')?.children?.[2]?.localName === 'th');
assert(document.querySelector('tr')?.children?.[3]?.localName === 'th');
2021-12-03 14:20:34 -08:00
```
# --seed--
## --seed-contents--
```html
<!DOCTYPE html>
<html>
<head>
2022-02-18 10:15:16 -08:00
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
2021-12-03 14:20:34 -08:00
<title>AcmeWidgetCorp Balance Sheet</title>
2022-02-18 10:15:16 -08:00
<link rel="stylesheet" type="text/css" href="./styles.css">
2021-12-03 14:20:34 -08:00
</head>
<body>
2022-02-18 10:15:16 -08:00
<main>
<section>
<h1>
<span class="flex">
<span>AcmeWidgetCorp</span>
<span>Balance Sheet</span>
</span>
</h1>
<div id="years" aria-hidden="true">
<span class="year">2019</span>
<span class="year">2020</span>
<span class="year">2021</span>
</div>
<div class="table-wrap">
<table>
<caption>Assets</caption>
2021-12-03 14:20:34 -08:00
--fcc-editable-region--
2022-02-18 10:15:16 -08:00
<thead>
</thead>
2021-12-03 14:20:34 -08:00
--fcc-editable-region--
2022-02-18 10:15:16 -08:00
<tbody>
</tbody>
</table>
<table>
</table>
<table>
</table>
</div>
</section>
</main>
2021-12-03 14:20:34 -08:00
</body>
</html>
```
```css
```