* chore(curriculum): accessibility-quiz * chore(curriculum): cafe-menu * chore(curriculum): ferris-wheel * chore(curriculum): fix ferris-wheel tests * chore(curriculum): colored-markers * chore(curriculum): photo-gallery * chore(curriculum): magazine * chore(curriculum): penguin * chore(curriculum): city-skyline * chore(curriculum): registration-form * chore(curriculum): picasso-painting * chore(curriculum): balance-sheet * chore(curriculum): piano * chore(curriculum): rothko-painting * fix: title min 15 chars
130 lines
4.0 KiB
Markdown
130 lines
4.0 KiB
Markdown
---
|
|
id: 61438ec09438696391076d6a
|
|
title: Step 11
|
|
challengeType: 0
|
|
dashedName: step-11
|
|
---
|
|
|
|
# --description--
|
|
|
|
Below your `.heading` element, create a new `section` element with the `class` set to `text`. Within that, create a `p` element with the `class` set to `first-paragraph` and the following text:
|
|
|
|
```markup
|
|
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.
|
|
```
|
|
|
|
# --hints--
|
|
|
|
You should create a new `section` element.
|
|
|
|
```js
|
|
assert(document.querySelectorAll('section')?.length === 2);
|
|
```
|
|
|
|
Your new `section` element should come after your `.heading` element.
|
|
|
|
```js
|
|
assert(document.querySelectorAll('section')?.[1]?.previousElementSibling?.className === 'heading');
|
|
```
|
|
|
|
Your new `section` element should have the `class` set to `text`.
|
|
|
|
```js
|
|
assert(document.querySelectorAll('section')?.[1]?.className === 'text');
|
|
```
|
|
|
|
You should create a new `p` element within your `.text` element.
|
|
|
|
```js
|
|
assert(document.querySelector('.text')?.querySelectorAll('p')?.length === 1);
|
|
```
|
|
|
|
Your new `p` element should have the `class` set to `first-paragraph`.
|
|
|
|
```js
|
|
assert(document.querySelector('.text p')?.className === 'first-paragraph');
|
|
```
|
|
|
|
Your new `p` element should have the provided text.
|
|
|
|
```js
|
|
assert(document.querySelector('.first-paragraph')?.innerText === '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.');
|
|
```
|
|
|
|
# --seed--
|
|
|
|
## --seed-contents--
|
|
|
|
```html
|
|
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>Magazine</title>
|
|
<link
|
|
href="https://fonts.googleapis.com/css?family=Anton|Baskervville|Raleway&display=swap"
|
|
rel="stylesheet"
|
|
/>
|
|
<link
|
|
rel="stylesheet"
|
|
href="https://use.fontawesome.com/releases/v5.8.2/css/all.css"
|
|
/>
|
|
<link rel="stylesheet" href="styles.css" />
|
|
</head>
|
|
<body>
|
|
<main>
|
|
<section class="heading">
|
|
<header class="hero">
|
|
<img
|
|
src="https://cdn.freecodecamp.org/platform/universal/fcc_meta_1920X1080-indigo.png"
|
|
alt="freecodecamp logo"
|
|
loading="lazy"
|
|
class="hero-img"
|
|
width="400"
|
|
/>
|
|
<h1 class="hero-title">OUR NEW CURRICULUM</h1>
|
|
<p class="hero-subtitle">
|
|
Our efforts to restructure our curriculum with a more project-based
|
|
focus
|
|
</p>
|
|
</header>
|
|
<div class="author">
|
|
<p class="author-name">
|
|
By
|
|
<a href="https://freecodecamp.org" target="_blank" rel="noreferrer"
|
|
>freeCodeCamp</a
|
|
>
|
|
</p>
|
|
<p class="publish-date">March 7, 2019</p>
|
|
</div>
|
|
<div class="social-icons">
|
|
<a href="https://www.facebook.com/freecodecamp/">
|
|
<i class="fab fa-facebook-f"></i>
|
|
</a>
|
|
<a href="https://twitter.com/freecodecamp/">
|
|
<i class="fab fa-twitter"></i>
|
|
</a>
|
|
<a href="https://instagram.com/freecodecamp">
|
|
<i class="fab fa-instagram"></i>
|
|
</a>
|
|
<a href="https://www.linkedin.com/school/free-code-camp/">
|
|
<i class="fab fa-linkedin-in"></i>
|
|
</a>
|
|
<a href="https://www.youtube.com/freecodecamp">
|
|
<i class="fab fa-youtube"></i>
|
|
</a>
|
|
</div>
|
|
</section>
|
|
--fcc-editable-region--
|
|
|
|
--fcc-editable-region--
|
|
</main>
|
|
</body>
|
|
</html>
|
|
```
|
|
|
|
```css
|
|
|
|
```
|