--- id: 614ccc21ea91ef1736b9b578 title: Step 1 challengeType: 0 dashedName: step-1 --- # --description-- Benvenuto alla prima parte del Quiz sull'Accessibilità. Adesso che stai diventando uno sviluppatore esperto di HTML e CSS, abbiamo già scritto il boilerplate base. Inizia questo viaggio nell'accessibilità fornendo un attributo `lang` al tuo elemento `html`. Questo aiuterà i lettori di schermo a identificare la lingua della pagina. # --hints-- Dovresti dare all'elemento `html` un attributo `lang`. _Suggerimento: Puoi usare il valore `en` per l'inglese._ ```js assert.match(code, //i); // TODO: This should/could be fixed in the builder.js // assert.notThrow(Intl.getCanonicalLocales(document.querySelector('html').lang)); ``` # --seed-- ## --seed-contents-- ```html --fcc-editable-region-- --fcc-editable-region-- ``` ```css body { background: #f5f6f7; color: #1b1b32; font-family: Helvetica; margin: 0; } ```