Files
freeCodeCamp/curriculum/challenges/english/14-responsive-web-design-22/learn-accessibility-by-building-a-quiz/61329d52e5010e08d9b9d66b.md
Naomi Carrigan 16e7cdedb1 feat: migrate filenames to IDs (#45146)
* feat: migrate filenames to IDs

* feat: migrate balance sheet file names

* revert: no id name for cert projects

* fix: i swear i know what i'm doing
2022-03-02 09:06:00 -06:00

1.4 KiB

id, title, challengeType, dashedName
id title challengeType dashedName
61329d52e5010e08d9b9d66b Step 4 0 step-4

--description--

Another important meta tag for accessibility and SEO is the description definition. The value of the content attribute is used by search engines to provide a description of your page.

Add a meta tag with the name attribute set to description, and give it a useful content attribute.

--hints--

You should add a new meta tag to the head.

assert.equal(document.querySelectorAll('meta').length, 3);

You should give the meta a name attribute of description.

assert.exists(document.querySelector('meta[name="description"]'));

You should give the meta a content attribute.

assert.notEmpty(document.querySelector('meta[name="description"]')?.content);

The content attribute value should not be more than 165 characters. This is Google's maximum description length.

assert.isAtMost(document.querySelector('meta[name="description"]')?.content?.length, 165);

--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" />
    <link rel="stylesheet" href="styles.css" />
  </head>
--fcc-editable-region--
  <body>

  </body>
</html>

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