* fix: renamed basic html cat photo app steps * fix: renamed css-variables project steps * fix: renamed d3-dashboard filenames * fix: renamed rpg-game filenames * fix: renamed functional-progamming-spreadsheet filenames * fix: renamed calorie-counter project filenames
681 B
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>