Design a Business Card - Design a Business Card

Tell us what’s happening:

Hello I am struggling with step 29. I am sure it’s a very simple fix with something that I have overlooked. I am hoping someone can point me in the right direction. It states that I need an an element after the p element in my code.

Your code so far

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

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

<body>
<div class="business-card">
    <img class="profile-image" src=
     "https://cdn.freecodecamp.org/curriculum/labs/flower.jpg" alt="card">
     <a href="https:// freecodecamp.org"></a>
     <a  href="https:// freecodecamp.org"></a>
     <a href="https:// freecodecamp.org"></a>
     <p class="full-name">Richard Villanueva</p>
       <p class="designation">Software Developer</p>
        <p class="company">Impossible Athletics</p>
        <hr>
        <p>email: info@email.com</p>
        <p>phone: 123-123-1234</p>
        <a href="https://freecodecamp.org">Portfolio</a>
        <hr>
        <div class="social-media">
          <h2>Connect with me</h2>
          <a href="link">Twitter</a>
          <a href="link">LinkedIn</a>
          <a href="link">GitHub</a>
       
</div>
    
</body>

</html>
/* file: styles.css */
body {
  background-color: rosybrown;
  font-family: Arial, sans-serif;
}
p {
  margin-top: 5px;
  margin-bottom: 5px;
}
:a hover {
  text-decoration: underlined;
  }
  a{
 text-decoration: none;
}
.business-card {
  background-color: purple;
  width: 300px;
  padding: 20px;
  margin-top: 100px;
  text-align: center;
  font-size: 16px;
  margin-left: auto;
  margin-right: auto;
}
.profile-image {
  max-width: 100%;
}

Your browser information:

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/16.6 Safari/605.1.15

Challenge Information:

Design a Business Card - Design a Business Card
https://www.freecodecamp.org/learn/full-stack-developer/lab-business-card/design-a-business-card

Here are some troubleshooting steps you can follow. Focus on one test at a time:

  1. Are there any errors or messages in the console?
  2. What is the requirement of the first failing test?
  3. Check the related User Story and ensure it’s followed precisely.
  4. What line of code implements this?
  5. What is the result of the code and does it match the requirement?

If this does not help you solve the problem, please reply with answers to these questions.

what are these for?