Learn CSS Grid by Building a Magazine - Step 14

Tell us what’s happening:
Describe your issue in detail here.

I am a bit confuse here!

  **Your code so far**
/* file: index.html */
<!DOCTYPE html>
<html lang="en">
<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%7CBaskervville%7CRaleway&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>
    <section class="text">
      <p class="first-paragraph">
        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.
      </p>
      <p>
        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!
      </p>
      <p>
        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.)
      </p>
    <p></p>
    <p></p>
    <p></p>

    <blockquote>
      <hr>
        <p class="quote">
          The entire curriculum should be a series of projects.
        </p>
      <hr>
    </blockquote>
    </section>
  </main>
</body>
</html>
/* file: styles.css */

  **Your browser information:**

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36

Challenge: Learn CSS Grid by Building a Magazine - Step 14

Link to the challenge:

Screenshot (7)

its similar to a div element with some additional default stylization.
some info on it…


(from stackoverflow)


(from W3Schools)

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.