Files
freeCodeCamp/curriculum/challenges/italian/04-data-visualization/d3-dashboard/part-002.md
Nicholas Carrigan (he/him) f25e3e69f8 feat: enable new langs (#42491)
Enable italian and portuguese
2021-06-15 13:19:18 +05:30

551 B

id, title, challengeType, dashedName
id title challengeType dashedName
5d8a4cfbe6b6180ed9a1c9df Part 2 0 part-2

--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>