mirror of
https://github.com/freeCodeCamp/freeCodeCamp.git
synced 2026-05-28 18:26:54 +00:00
dbc5332f9c
Signed-off-by: Ayush <ayushjoshi8445@gmail.com>
1010 B
1010 B
id, title, challengeType, dashedName, demoType
| id | title | challengeType | dashedName | demoType |
|---|---|---|---|---|
| 66a9b48a211a73155621d0df | Step 1 | 0 | step-1 | onLoad |
--description--
In this workshop, you will practice working with HTML tables by building a final exam table for a group of students.
In previous lessons, you learned how to work with the table element to represent tabular data.
Inside your body element, nest a table element.
--hints--
You should have an opening table tag.
assert.match(code, /<table>/i);
You should have a closing table tag.
assert.match(code, /<\/table>/i);
Your table element should be inside your body element.
const tableEl = document.querySelector('table');
assert.strictEqual(tableEl?.parentElement?.tagName, 'BODY');
--seed--
--seed-contents--
<!DOCTYPE html>
<html lang="en">
<head>
<title>Calculus Final Exams Table</title>
<meta charset="UTF-8" />
</head>
<body>
--fcc-editable-region--
--fcc-editable-region--
</body>
</html>