freeCodeCamp/curriculum/challenges/english/04-data-visualization/d3-dashboard/part-002.md

762 B

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.

Instructions

Tests

tests:
  - text: test-text
    testString: 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));

Challenge Seed

<!DOCTYPE html>

Solution

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

  <body>
  </body>
</html>