I think tests not working on this page

I typed code correctly but tests are not executing on the page given below

https://learn.freecodecamp.org/responsive-web-design/applied-visual-design/create-a-horizontal-line-using-the-hr-element

can you format your code and share it?

<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><s>Google</s>Alphabet</h4>
      <hr>
      <p><em>Google was founded by Larry Page and Sergey Brin while they were <u>Ph.D. students</u> at <strong>Stanford University</strong>.</em></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>

That code does seem right.

This challenge contains a known bug.

I would skip it and come back later.

1 Like

thanks… for helping me out.

Good to know for later on! Thanks :slight_smile:

you can swap

and :heart_eyes:

Don’t do this. It is invalid HTML regardless of the test “passing”.

then what should i do?

This is a bug and there is a fix.
the place where there is the paragraph about google has a <p and an <em tag swich those two up so the em comes first and ofcorse last

Skip the test until it’s fixed. Click on the curriculum link at the top and start on the next challenge.

That is invalid HTML. You should never use that in real code.