Randell Dawson b9c9a95223 chore(learn): Renamed all project-based curriculum project step filenames to use 3-digit format of part-ddd.md (#39463)
* 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
2020-09-16 11:54:12 +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>