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

1.3 KiB

id title challengeType dashedName
6133acc353338c0bba9cb553 Step 5 0 step-5

--description--

All'interno dell'elemento head, l'elemento title è utile ai lettori di schermo per capire il contenuto di una pagina. Inoltre, è una parte importante della SEO.

Assegna alla pagina un elemento title che sia descrittivo e conciso.

--hints--

Dovresti aggiungere un elemento title all'interno dell'elemento head.

assert.exists(document.querySelector('head > title'));

Non dovresti avere un title più lungo di 60 caratteri.

assert.isAtMost(document.querySelector('head > title')?.textContent?.length, 60);

Cerca di essere più descrittivo con l'elemento title. Suggerimento: Almeno 15 caratteri

assert.isAtLeast(document.querySelector('head > title')?.textContent?.length, 15);

--seed--

--seed-contents--

<!DOCTYPE html>
<html lang="en">
--fcc-editable-region--
  <head>
    <meta charset="UTF-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <meta name="description" content="freeCodeCamp Accessibility Quiz practice project" />
    <link rel="stylesheet" href="styles.css" />
  </head>
--fcc-editable-region--
  <body>

  </body>
</html>

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