--- id: 60b80da8676fb3227967a731 title: Step 3 challengeType: 0 dashedName: step-3 --- # --description-- Vai avanti e collega il tuo file CSS, anche se non hai ancora scritto alcun CSS. Aggiungi un elemento `link` con un attributo `rel` di `stylesheet` e un `href` con il valore `styles.css`. # --hints-- Il codice dovrebbe avere un elemento `link`. ```js assert.match(code, //i)); ``` L'elemento `link` dovrebbe essere all'interno dell'elemento `head`. ```js assert(code.match(/[\w\W\s]*[\w\W\s]*<\/head>/i)) ``` L'elemento `link` dovrebbe avere un attributo `rel` con il valore `stylesheet`. ```js assert.match(code, / Picasso Painting --fcc-editable-region-- --fcc-editable-region-- ``` ```css ```