Files
freeCodeCamp/curriculum/challenges/english/01-responsive-web-design/css-variables-skyline/part-2.md

679 B

id, title, challengeType, isBeta
id title challengeType isBeta
5d822fd413a79914d39e98ca Part 2 0 true

Description

Add opening and closing html tags below the doctype so you have a place to start putting some code.

Instructions

Tests

tests:
  - text: test-text
    testString: assert(code.match(/<!DOCTYPE\s+html\s*>\s*<html\s*>\s*<\/html\s*>/gi));

Challenge Seed

<!DOCTYPE html>

Solution

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