Design a Business Card - Design a Business Card

Tell us what’s happening:

On step 32, I added the <hr> element after the portfolio but it still doesn’t work

Your code so far

<!-- file: index.html -->
<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="utf-8">
    <title>Business Card</title>
    <link rel="stylesheet" href="styles.css"></link>
</head>

<body>
<div class="business-card">
    <img class="profile-image" src="https://miro.medium.com/v2/resize:fit:1400/1*HS64FUneIreB0ZrE9GDziw.jpeg" alt="Isagi from Blue Lock">
    <p class="full-name">Beniamin Bacaoanu</p>
    <p class="designation">Ace Striker</p>
    <p class="company">Greystones United AFC</p>
    <hr>
    <p>benygamer2009@gmail.com</p>
    <p>1234567890<p>
        <a class="portfolio-link" href="https://dbrand.com/shop/skins/steam-deck-oled-skins#/customizer/edit/design">Portfolio</a>
    <hr>   
  <div class="social-media">
<h2>Connect with me</h2>
<a href="https://x.com/i/flow/single_sign_on">Twitter</a>
<a href="https://ie.linkedin.com">LinkedIn</a>
<a href="https://github.com">GitHub</a>
</div>
</div>
</body>

</html>
/* file: styles.css */
body {
  background-color: rosybrown;
  font-family: Arial, sans-serif;

}

p {
  margin-top: 5px;
  margin-bottom: 5px;
}

.business-card {
  width: 300px;
  background-color: green; 
  padding: 20px;
  margin-top: 100px;
  text-align: center;
  font-size: 16px;
  margin-right: auto;
  margin-left: auto;
}
.profile-image {
  max-width: 100%;

}
a {
  text-decoration: none;
}

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36 OPR/123.0.0.0

Challenge Information:

Design a Business Card - Design a Business Card

Please check the order of your opening and closing div tags.

Thanks, it wasn’t the div tags actually, it was the closing bracket of a paragraph.