Why wont it pass if i did what it said to do?

Tell us what’s happening:
Describe your issue in detail here.
I put a strong tag around Stanford university without the period but it says i didnt.

  **Your code so far**

<style>
h4 {
  text-align: center;
  height: 25px;
}
p {
  text-align: justify;
}
.links {
  text-align: left;
  color: black;
}
.fullCard {
  width: 245px;
  border: 1px solid #ccc;
  border-radius: 5px;
  margin: 10px 5px;
  padding: 4px;
}
.cardContent {
  padding: 10px;
}
.cardText {
  margin-bottom: 30px;
}
</style>
<div class="fullCard">
<div class="cardContent">
  <div class="cardText">
    <h4>Google</h4>
    <p>Google was founded by Larry Page and Sergey Brin while they were Ph.D. students at<strong> Stanford University </strong>.</p>
  </div>
  <div class="cardLinks">
    <a href="https://en.wikipedia.org/wiki/Larry_Page" target="_blank" class="links">Larry Page</a><br><br>
    <a href="https://en.wikipedia.org/wiki/Sergey_Brin" target="_blank" class="links">Sergey Brin</a>
  </div>
</div>
</div>
  **Your browser information:**

User Agent is: Mozilla/5.0 (X11; CrOS x86_64 14150.87.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.124 Safari/537.36

Challenge: Use the strong Tag to Make Text Bold

Link to the challenge:

remove the spaces between the strong tags and stanford university. Even if you had the period inside the strong tag it still passes if you dont have any spaces between the strong tag and stanford university

Simply put because your whitespace is all over the place.

What your code should be:

at <strong>Stanford University</strong>.

How your code reads

at<strong> Stanford University </strong>.

It worked. Just going to remember that. Thank you!

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