--- id: 614ccc21ea91ef1736b9b578 title: Step 1 challengeType: 0 dashedName: step-1 --- # --description-- Welcome to the first part in the Accessibility Quiz. As you are becoming a seasoned HTML and CSS developer, we have started you off with the basic boilerplate. Start this accessibility journey, by providing a `lang` attribute to your `html` element. This will assist screen readers in identifying the language of the page. # --hints-- You should give the `html` element a `lang` attribute. _Hint: You can use the value `en` for English._ ```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; } ```