* 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
777 B
777 B
id, title, challengeType, isHidden
id | title | challengeType | isHidden |
---|---|---|---|
5d8a4cfbe6b6180ed9a1c9df | Part 2 | 0 | true |
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>