--- id: 61439e33e4fb7967609e0c83 title: Passo 14 challengeType: 0 dashedName: step-14 --- # --description-- Após os três elementos `p` dentro do elemento `.text`, crie um elemento `blockquote`. Dentro dele, adicione um elemento `hr`, um elemento `p` com a `class` definida como `quote` e um segundo elemento `hr`. Adicione ao elemento `.quote` o texto `The entire curriculum should be a series of projects`. # --hints-- Você deve criar um elemento `blockquote` dentro do elemento `.text`. ```js assert.exists(document.querySelector('.text blockquote')); ``` O elemento `blockquote` deve vir depois dos três elementos `p`. ```js assert(document.querySelector('.text')?.children?.[3]?.localName === 'blockquote'); ``` O elemento `blockquote` deve ter dois elementos `hr`. ```js assert(document.querySelectorAll('.text blockquote hr')?.length === 2); ``` O elemento `blockquote` deve ter um elemento `p`. ```js assert.exists(document.querySelector('.text blockquote p')); ``` Os elementos filhos do `blockquote` devem estar na ordem correta. ```js const children = document.querySelector('.text blockquote')?.children; assert(children?.[0]?.localName === 'hr'); assert(children?.[1]?.localName === 'p'); assert(children?.[2]?.localName === 'hr'); ``` O novo elemento `p` deve ter `class` definido como `quote`. ```js assert(document.querySelector('.text blockquote p')?.className === 'quote'); ``` O novo elemento `p` deve ter o texto `The entire curriculum should be a series of projects`. ```js assert(document.querySelector('.text blockquote p')?.innerText === 'The entire curriculum should be a series of projects'); ``` # --seed-- ## --seed-contents-- ```html Magazine
freecodecamp logo

OUR NEW CURRICULUM

Our efforts to restructure our curriculum with a more project-based focus

By freeCodeCamp

March 7, 2019

Soon the freeCodeCamp curriculum will be 100% project-driven learning. Instead of a series of coding challenges, you'll learn through building projects - step by step. Before we get into the details, let me emphasize: we are not changing the certifications. All 6 certifications will still have the same 5 required projects. We are only changing the optional coding challenges.

After years - years - of pondering these two problems and how to solve them, I slipped, hit my head on the sink, and when I came to I had a revelation! A vision! A picture in my head! A picture of this! This is what makes time travel possible: the flux capacitor!

It wasn't as dramatic as Doc's revelation in Back to the Future. It just occurred to me while I was going for a run. The revelation: the entire curriculum should be a series of projects. Instead of individual coding challenges, we'll just have projects, each with their own seamless series of tests. Each test gives you just enough information to figure out how to get it to pass. (And you can view hints if that isn't enough.)

--fcc-editable-region-- --fcc-editable-region--
``` ```css ```