Coloring the first P element

Hello world

Your first p element should have the class ```red-text```

``` I am getting the above after running my test ```

Passed

Your h2 element should be red.

Passed

Your h2 element should have the class red-text .

Passed

Your first p element should be red.

Passed

Your second and third p elements should not be red.

Fail
Your first p element should have the class red-text .

  **Your code so far**

<style>
.red-text {
  color: red;
}
</style>

<h2 class="red-text">CatPhotoApp
<main>
<p>Click here to view more cat photos.
</h2>
<a href="#"><img src="https://bit.ly/fcc-relaxing-cat" alt="A cute orange cat lying on its back."></a>

<div>
  <p>Things cats love:</p>
  <ul>
    <li>cat nip</li>
    <li>laser pointers</li>
    <li>lasagna</li>
  </ul>
  <p>Top 3 things cats hate:</p>
  <ol>
    <li>flea treatment</li>
    <li>thunder</li>
    <li>other cats</li>
  </ol>
</div>

<form action="https://freecatphotoapp.com/submit-cat-photo">
  <label><input type="radio" name="indoor-outdoor" checked> Indoor</label>
  <label><input type="radio" name="indoor-outdoor"> Outdoor</label><br>
  <label><input type="checkbox" name="personality" checked> Loving</label>
  <label><input type="checkbox" name="personality"> Lazy</label>
  <label><input type="checkbox" name="personality"> Energetic</label><br>
  <input type="text" placeholder="cat photo URL" required>
  <button type="submit">Submit</button>
</form>
</main>
  **Your browser information:**

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

Challenge: Style Multiple Elements with a CSS Class

Link to the challenge:

Which element has the class "red-text"?

This one below

CatPhotoApp

Click here to view more cat photos.

<h2 class="red-text">CatPhotoApp

<main>

  <p>Click here to view more cat photos.

</h2>

I’ve edited your post for readability. When you enter a code block into a forum post, please precede it with a separate line of three backticks and follow it with a separate line of three backticks to make it easier to read.

You can also use the “preformatted text” tool in the editor (</>) to add backticks around text.

See this post to find the backtick on your keyboard.
Note: Backticks (`) are not single quotes (’).

Which element did you give the class red-text? Which element are you required to give the class red-text?

@JeremyLT

I got it right, thank you

Thank you helping out

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