--- 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, / link')); ``` L'elemento `link` dovrebbe avere un attributo `rel` con il valore `stylesheet`. ```js const link_element = document.querySelector('link'); const rel = link_element.getAttribute("rel"); assert.equal(rel, "stylesheet"); ``` L'elemento `link` dovrebbe avere un attributo `href` con il valore `styles.css`. ```js const link = document.querySelector('link'); assert.equal(link.dataset.href, "styles.css"); ``` # --seed-- ## --seed-contents-- ```html Picasso Painting --fcc-editable-region-- --fcc-editable-region-- ``` ```css ```