Design a Business Card - Design a Business Card

Tell us what’s happening:

The portfolio section isn’t working and I cannot figure out why.

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">
</head>

<body>
    <div class="business-card">
        <img src="https://cdn.freecodecamp.org/curriculum/labs/flower.jpg" alt="flower" class="profile-image">
        <p class="full-name">Brandon Barksdale</p>
        <p class="designation">Choreographer</p>
        <p class="company">Freelancer</p>
        <hr>
        <p>Email: email@email.com</p>
        <p>Phone: (999)999-9999</p>
        <p><a href="google.com">Portfolio</a></p>
        <hr>
        <div class="social-media">
            <h2>Connect with me</h2>
            <a href="twitter.com">Twitter</a>
            <a href="linkedin.com">LinkedIn</a>
            <a href="github.com">GitHub</a>
        </div>
    </div>
</body>

</html>
/* file: styles.css */
body {
  background-color: rosybrown;
  font-family: Arial, sans-serif;
}
.business-card {
  width: 300px;
  background-color: white;
  padding: 20px;
  margin-top: 100px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  font-size: 16px;
}
.profile-image {
  max-width: 100%
}
p {
  margin-top: 5px;
  margin-bottom: 5px;
}
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/138.0.0.0 Safari/537.36

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

After the two p elements, there should be an a element with the text Portfolio linking to a valid URL

Read this again, please.

I knew I was going to feel foolish, thank you.

We all miss things like this sometimes! You’re doing great! Keep at it!