--- id: 612e83ec2eca1e370f830511 title: Step 8 challengeType: 0 dashedName: step-8 --- # --description-- Add a `link` element within your `head` element. For that `link` element, set the `rel` attribute to `stylesheet` and the `href` to `./styles.css`. # --hints-- Your code should have a `link` element. ```js assert.match(code, //i)); ``` Your `link` element should be within your `head` element. ```js assert(code.match(/[\w\W\s]*[\w\W\s]*<\/head>/i)) ``` Your `link` element should have a `rel` attribute with the value `stylesheet`. ```js assert.match(code, / --fcc-editable-region-- Piano --fcc-editable-region--
``` ```css ```