The 'u' tag seems not to be working i dont knw why

Tell us what’s happening:
Describe your issue in detail here.
i wrapped the phd students in a tag but it seems not to be working please can anyone assist me as to what could be the problem?

  **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 <u>Ph.D.students</u> 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/93.0.4577.82 Safari/537.36

Challenge: Use the u Tag to Underline Text

Link to the challenge:

Hi @Pauligwegbe !

Welcome to the forum!

You are missing a space here

It is supposed to look like this in the preview window
Screen Shot 2021-09-18 at 3.25.05 PM

thank you for replying , it looked like that in the preview pane but is still not working. plus i’ve removed and added space on every side bt still didnt work

Can I see your new code?

Because I tested it on my end and it passed for me.

Here is how to write code into the forum

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 (’).

 <p>Google was founded by Larry Page and Sergey Brin while they were <u>Ph.D.students</u> at  <strong>Stanford University.</strong> </p>

You are still missing a space between D. and students.

Try that and see if it works.

thank you so so so much

it worked, i didnt pay attention to that; didnt knw it meant a lot

am so happy i appreciate

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