2020-09-03 19:12:42 -07:00
---
id: 5f3477cb2e27333b1ab2b955
title: Part 17
challengeType: 0
2021-01-13 03:31:00 +01:00
dashedName: part-17
2020-09-03 19:12:42 -07:00
---
2020-11-27 19:02:05 +01:00
# --description--
2020-09-03 19:12:42 -07:00
2020-10-13 15:27:40 -07:00
Now you need to link the `styles.css` file so the styles will be applied again. Next a self-closing `link` element in the `head` element. Give it a `rel` attribute value `stylesheet` , a `type` attribute value of `text/css` , and an `href` attribute value of `styles.css` .
2020-09-03 19:12:42 -07:00
2020-11-27 19:02:05 +01:00
# --hints--
2020-09-03 19:12:42 -07:00
2020-11-27 19:02:05 +01:00
Test 1
2020-09-03 19:12:42 -07:00
2020-11-27 19:02:05 +01:00
```js
2020-09-03 19:12:42 -07:00
```
2020-11-27 19:02:05 +01:00
# --seed--
2020-09-03 19:12:42 -07:00
2020-11-27 19:02:05 +01:00
## --seed-contents--
2020-09-03 19:12:42 -07:00
```html
<!DOCTYPE html>
<html>
2020-11-27 19:02:05 +01:00
--fcc-editable-region--
2020-09-03 19:12:42 -07:00
<head>
<meta charset="utf-8" />
<title>Camper Cafe Menu</title>
</head>
2020-11-27 19:02:05 +01:00
--fcc-editable-region--
2020-09-03 19:12:42 -07:00
<body>
<header>
<h1>CAMPER CAFE</h1>
<p>Est. 2020</p>
</header>
<main>
<section>
<h2>Coffees</h2>
</section>
</main>
</body>
<html>
```
```css
h1, h2, p {
text-align: center;
}
```