Now you will add a web form to collect information from users.
After the `Cat Form` heading, add a `form` element.
</section>
## Tests
<sectionid='tests'>
```yml
tests:
- text: Your `form` element should have an opening tag and closing tag. You may be missing one or both of the required tags, or have them in the wrong order.
testString: |
assert(
document.querySelector('form') &&
code.match(/<\/form>/g)
);
- text: Your `form` element tags are not in the correct order.
- text: The `form` element nested in the last `section` element should be below the `h2` element. You have the `h2` element and the `form` element in the wrong order.