Problem with bolding a text

**I should put the “strong” tag around “Stanford University” but It does not accept the solution, there is alwazs a problem.*I have tried with and without a dot it is always the same.
Describe your issue in detail here.

  **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 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.159 Safari/537.36

Challenge: Use the strong Tag to Make Text Bold

Link to the challenge:

Hi
I found two issues in your provided code. →

  • You are not suppose to put dot " . " within <strong></strong> tags
  • The space between <strong> and Stanford is adding unnecessary space
    remove it

Your current code look like this →

  • Google was founded by Larry Page and Sergey Brin while they were Ph.D. students at __ Stanford University.

  • “__” is extra space.

Hope i did not over complicated things
In a nutshell just remove the space and put the dot out of strong tags

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