Files
freeCodeCamp/curriculum/challenges/english/01-responsive-web-design/accessibility-quiz/part-004.md
Shaun Hamilton 2deb73c8d1 feat(curriculum): add accessibility-quiz practice project (#43244)
* feat(curriculum): add accessibility-quiz practice project

* add parts 002-006

* add parts 7-8, tentative on logo aspect-ratio

* add parts 008-013

* add parts 013-016

* add parts 017-026

* add parts 026-027

* add parts 027-029

* add parts 029-044

* add parts 044-067 - all parts done

* add tests 001-009

* add tests 010 - 033

* add tests 034 - 039

* update tests 008~033, add tests 040-050

* add all tests

* fix some stuff, remove final.md

* take reasonable suggestions from Nich, ignore rest

Co-authored-by: Nicholas Carrigan (he/him) <nhcarrigan@gmail.com>

* replace svg link with actual CDN

* remove getAttribute in potentially bad places

* add method to form

* fix silly querySelectors

* adjust selectors for 028

* fix selectors, and add color transformations

Co-authored-by: Nicholas Carrigan <nhcarrigan@gmail.com>

* fix: typos, and make one test lenient

Co-authored-by: gikf <60067306+gikf@users.noreply.github.com>

Co-authored-by: Nicholas Carrigan (he/him) <nhcarrigan@gmail.com>
Co-authored-by: gikf <60067306+gikf@users.noreply.github.com>
2021-09-28 15:38:44 -05:00

1.4 KiB

id, title, challengeType, dashedName
id title challengeType dashedName
61329d52e5010e08d9b9d66b Part 4 0 part-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;
}