freeCodeCamp/curriculum/challenges/italian/14-responsive-web-design-22/learn-accessibility-by-buil.../614ccc21ea91ef1736b9b578.md

1.1 KiB

id title challengeType dashedName
614ccc21ea91ef1736b9b578 Step 1 0 step-1

--description--

Benvenuto nella prima parte del Quiz sull'Accessibilità. Adesso che stai diventando uno sviluppatore esperto di HTML e CSS, ti abbiamo già fornito lo scheletro di base della pagina.

Inizia questo viaggio nell'accessibilità fornendo un attributo lang all'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.

assert.match(code, /<html\s+lang=('|")[\w\-]+?\1\s*>/i);
// TODO: This should/could be fixed in the builder.js
// assert.notThrow(Intl.getCanonicalLocales(document.querySelector('html').lang));

--seed--

--seed-contents--

<!DOCTYPE html>
--fcc-editable-region--
<html>
  <head>
    <link rel="stylesheet" href="styles.css" />
  </head>
  <body>

  </body>
</html>
--fcc-editable-region--

body {
  background: #f5f6f7;
  color: #1b1b32;
  font-family: Helvetica;
  margin: 0;
}