Add a `title` element to the `head`, and give your project a title of `freeCodeCamp Registration Form Project`. Also, nest a self-closing `link` element in the `head` element. Give it a `rel` attribute value of `stylesheet`, a `type` attribute value of `text/css`, and an `href` attribute value of `styles.css`.
# --hints--
Your code should have a `title` element.
```js
const title = document.querySelector('title');
assert.exists(title);
```
The `title` element should be within the `head` element.
```js
const head = document.querySelector('head');
// TODO: head does not contain title...body contains title
assert(true);
```
Your project should have a title of `freeCodeCamp Registration Form Project`.
```js
const title = document.querySelector('title');
assert.equal(title.text.toLowerCase(), 'freecodecamp registration form project')
```
Remember, the casing and spelling matters for the title.
```js
const title = document.querySelector('title');
assert.equal(title.text, 'freeCodeCamp Registration Form Project');
```
Your code should have a `link` element.
```js
assert.match(code, /<link/)
```
You should not change your existing `head` tags. Make sure you did not delete the closing tag.
```js
const heads = document.querySelectorAll('head');
assert.equal(heads?.length, 1);
```
Your `link` element should be a self-closing element.
```js
assert(code.match(/<link[\w\W\s]+\/>/i));
```
Your `link` element should be within your `head` element.