Within your `head` element, add a `link` element with the `rel` attribute set to `stylesheet` and the `href` attribute set to `https://fonts.googleapis.com/css?family=Open+Sans:400,700,800`.
This will import the `Open Sans` font family, with the font weight values `400`, `700`, and `800`.
Also add a `link` element to link your `styles.css` file.
# --hints--
You should have two `link` elements.
```js
assert(code.match(/<link/g)?.length ===2);
```
Both of your `link` elements should have the `rel` attribute set to `stylesheet`.