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

529 B

id, title, challengeType, dashedName
id title challengeType dashedName
5d8a4cfbe6b6180ed9a1c9e0 Part 3 0 part-3

--description--

In the head, add a title of D3 Dashboard.

--hints--

test-text

assert(
  /<head\s*>\s*<title\s*>D3 Dashboard<\/title\s*>\s*<\/head\s*>/g.test(code)
);

--seed--

--seed-contents--

<!DOCTYPE html>
<html>
  <head>

  
  </head>

  <body>
  </body>
</html>

--solutions--

<!DOCTYPE html>
<html>
  <head>
    <title>D3 Dashboard</title>
  </head>

  <body>
  </body>
</html>