--- id: 5f3477cb2e27333b1ab2b955 title: Part 17 challengeType: 0 dashedName: part-17 --- # --description-- 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`. # --hints-- Test 1 ```js ``` # --seed-- ## --seed-contents-- ```html --fcc-editable-region-- Camper Cafe Menu --fcc-editable-region--

CAMPER CAFE

Est. 2020

Coffees

``` ```css h1, h2, p { text-align: center; } ```