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

52 lines
666 B
Markdown
Raw Normal View History

---
id: 5d822fd413a79914d39e98ca
title: Part 2
challengeType: 0
---
## Description
<section id='description'>
Add opening and closing `html` tags below the doctype so you have a place to start putting some code.
</section>
## Instructions
<section id='instructions'>
</section>
## Tests
<section id='tests'>
```yml
tests:
- text: test-text
testString: assert(code.match(/<!DOCTYPE\s+html\s*>\s*<html\s*>\s*<\/html\s*>/gi));
```
</section>
## Challenge Seed
<section id='challengeSeed'>
<div id='html-seed'>
```html
<!DOCTYPE html>
```
</div>
</section>
## Solution
<section id='solution'>
```html
<!DOCTYPE html>
<html>
</html>
```
</section>