Files
freeCodeCamp/curriculum/challenges/english/04-data-visualization/d3-dashboard/part-002.md
Oliver Eyton-Williams 0bd52f8bd1 Feat: add new Markdown parser (#39800)
and change all the challenges to new `md` format.
2020-11-27 10:02:05 -08:00

532 B

id, title, challengeType
id title challengeType
5d8a4cfbe6b6180ed9a1c9df Part 2 0

--description--

Next, add opening and closing html, head and body tags below the doctype. Be sure to nest them properly.

--hints--

test-text

assert(
  /<!DOCTYPE\s+html\s*>\s*<html\s*>\s*<head\s*>\s*<\/head\s*>\s*<body\s*>\s*<\/body\s*>\s*<\/html\s*>/gi.test(
    code
  )
);

--seed--

--seed-contents--

<!DOCTYPE html>

--solutions--

<!DOCTYPE html>
<html>
  <head>
  </head>

  <body>
  </body>
</html>