Strong Tag is wrapped around correct words

Tell us what’s happening:
Strong tag is wrapped correctly. Unable to complete challenge. Please help. I want to move on to next module. Thank you.

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 (Macintosh; Intel Mac OS X 10_15_3) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.5 Safari/605.1.15.

Challenge: Use the strong Tag to Make Text Bold

Link to the challenge:
https://www.freecodecamp.org/learn/responsive-web-design/applied-visual-design/use-the-strong-tag-to-make-text-bold

You gotta read the instructions carefully. Make sure the period is outside the <strong> tag.

machines are stupid
if you are tasked to write Hello and you write Hello! you may think it is correct, but machines are stupid, so they think it is wrong
careful with these small things

I have same issue. I am stuck in this challenge.
In the code,I did not include the period. still, the error is " The strong tag should wrap around the words “Stanford University”."
Could you please explain this more?

are you sure you put only those words in there? other characters will make the test fail

Thank you. I fixed it. .