2020-09-16 11:54:01 +05:30

681 B

id, title, challengeType, isHidden
id title challengeType isHidden
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>