Use the strong Tag to Make Text Boldd

Tell us what’s happening:

I added the strong tag but im still stucked, please help

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  font-weight:bold> 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 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.99 Safari/537.36.

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

<strong font-weight:bold>
This is incorrect. If you read the instructions carefully, you’ll see that the strong tag automatically applies font-weight: bold. That doesn’t mean that you should add that text to the tag.

no need to add font-weight : bold only use strong tag for this lesson.

I wish this FCC exercise would emphasize that CSS should be used to make text bold rather than using the strong tag. The strong tag has a certain semantic purpose and shouldn’t be used solely to make text bold: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/strong (see “Usage notes”)

1 Like

Thanks, i did and its working fine now

I am using the strong like in the watch video but still doesn’t work. Please help

You can post your code using the Ask for help button, it is not possible to know what’s wrong without seeing your code

Also, note that you need to match exactly what is being asked in the challenge. For example the dot should be outside of the string tag

you have to make bold by using html strong tag instead of css font-weight: bold. Thats it

<strong>blabalballa</strong>

how did you do it pls???

If you need help with a challenge use the Ask for help button, so people can answer your questions based on your own code