freeCodeCamp/curriculum/challenges/italian/14-responsive-web-design-22/learn-css-transforms-by-bui.../619665c9abd72906f3ad30f9.md

3.3 KiB

id title challengeType dashedName
619665c9abd72906f3ad30f9 Step 1 0 step-1

--description--

Creerai un pinguino felice che saluta e in questo processo esplorerai ulteriormente le trasformazioni e le animazioni in CSS.

Comincia con il testo HTML standard. Includi la dichiarazione DOCTYPE, l'elemento html con la lingua impostata sull'inglese, i tag meta appropriati, gli elementi head, body e title. Inoltre, collega il foglio di stile alla pagina.

--hints--

Il codice dovrebbe avere una dichiarazione <!DOCTYPE html>.

assert(code.match(/<!DOCTYPE html>/i));

Il codice dovrebbe avere un elemento html.

assert.equal(document.querySelectorAll('html')?.length, 1);

L'elemento html dovrebbe avere una tag di apertura con un attributo lang di en.

assert(code.match(/<html\s+lang\s*=\s*('|")en\1\s*>/gi));

L'elemento html dovrebbe avere un tag di chiusura.

assert(code.match(/<\/html\s*>/gi));

Il codice dovrebbe avere un elemento head all'interno dell'elemento html.

assert.equal(document.querySelectorAll('head')?.length, 1);

Il codice dovrebbe avere un elemento body all'interno dell'elemento html.

assert.equal(document.querySelectorAll('body')?.length, 1);

L'elemento head dovrebbe trovarsi prima dell'elemento body.

assert.equal(document.querySelector('body')?.previousElementSibling?.tagName, 'HEAD');

Dovresti avere due elementi meta.

const meta = document.querySelectorAll('meta');
assert.equal(meta?.length, 2);

Un elemento meta dovrebbe avere un attributo name con valore di viewport e un attributo content con valore di width=device-width, initial-scale=1.0.

const meta = [...document.querySelectorAll('meta')];
const target = meta?.find(m => m?.getAttribute('name') === 'viewport' && m?.getAttribute('content') === 'width=device-width, initial-scale=1.0' && !m?.getAttribute('charset'));
assert.exists(target);

L'altro elemento meta dovrebbe avere l'attributo charset con valore di UTF-8.

const meta = [...document.querySelectorAll('meta')];
const target = meta?.find(m => !m?.getAttribute('name') && !m?.getAttribute('content') && m?.getAttribute('charset')?.toLowerCase() === 'utf-8');
assert.exists(target);

Il codice dovrebbe avere un elemento title.

const title = document.querySelector('title');
assert.exists(title);

L'elemento title dovrebbe avere del testo.

const title = document.querySelector('title');
assert.isAtLeast(title?.textContent?.length, 1);

Il codice dovrebbe avere un elemento link.

assert.exists(document.querySelector('link'));

L'elemento link dovrebbe trovarsi all'interno dell'elemento head.

assert(code.match(/<head>[\w\W\s]*<link[\w\W\s]*\/?>[\w\W\s]*<\/head>/i));

L'elemento link dovrebbe avere un attributo rel con il valore stylesheet.

const link_element = document.querySelector('link');
const rel = link_element.getAttribute("rel");
assert.equal(rel, "stylesheet");

L'elemento link dovrebbe avere un attributo href con il valore styles.css.

const link = document.querySelector('link');
assert.equal(link.dataset.href, "styles.css");

--seed--

--seed-contents--

--fcc-editable-region--

--fcc-editable-region--