Design a Business Card - Step 29

I can’t seem to get past step 29 - the instruction is: * 29. After the phone number p element, there should be an a element with the text Portfolio

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="utf-8">
  <title>Business Card</title>
  <link rel="stylesheet" href="styles.css">
</head>
<body>
  <div class="business-card">
    <img class="profile-image" src="https://cdn.freecodecamp.org/curriculum/labs/flower.jpg" alt="a flower">
    <p class="full-name">Nick Wennerbom</p>
    <p class="designation">Operations Manager</p>
    <p class="company">Bowen Storage</p>
    <hr>
    <p>Email: <a href="mailto:Nick.Wennerbom@gmail.com">Nick.Wennerbom@gmail.com</a></p>
    <p class="phone-number">05522552525</p>
            <a href="https://cdn.freecodecamp.org/curriculum/labs/flower.jpg" style="text-decoration:none">Portfolio</a>
    <hr>
    <div class="social-media">
      <h2>Connect with me</h2>
      <a href="https://twitter.com" title="Twitter" target="_blank" rel="noopener noreferrer">Twitter</a>
      <a href="https://linkedin.com" title="LinkedIn" target="_blank" rel="noopener noreferrer">LinkedIn</a>
      <a href="https://github.com" title="GitHub" target="_blank" rel="noopener noreferrer">GitHub</a>
    </div>
  </div>
</body>
</html>

Please post a link to the Step and talk about how you got stuck figuring out what the error message means.

I am unsure as to how I was stuck however through working through the code, it wasn’t actually step 29 that was wrong, I was just over-complicating the solution.

    <p>Email:Nick.Wennerbom@gmail.com</p>
    <p>0493201600</p>
    <a href="https://cdn.freecodecamp.org/curriculum/labs/flower.jpg">Portfolio</a>
    <hr>

I had 

```<p>Email: <a href="mailto:Nick.Wennerbom@gmail.com">Nick.Wennerbom@gmail.com</a></p>
    <p class="phone-number">05522552525</p>
            <a href="https://cdn.freecodecamp.org/curriculum/labs/flower.jpg" style="text-decoration:none">Portfolio</a>
    <hr>

Which is considerably overcomplicating the solution.