Design a Business Card - Design a Business Card

状況を説明しましょう:

I don’t know why couldn’t complete ‘29. After the phone number p element, there should be an a element with the text Portfolio’.

29番の条件を満たしていると思うのですが完了になりません。

現状のコード

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

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

<body>
<div class="business-card">
    <main>
<img class="profile-image" src="https://cdn.freecodecamp.org/curriculum/labs/flower.jpg" alt="flower">
<p class="full-name">Your Name</p>
<p class="designation">Software Developer</p>
<p class="company">@freeCodeCamp</p>    

<hr>
<p>Email: your-email@example.com</p>
<p>Phone: (123) 456-7890</p>
<a href="https://www.foriio.com/">Portfolio</a>
    
    <hr>
    <div class="social-media">
        <h2>Connect with me</h2>
        <a href="https://x.com/">Twitter</a>
        <a href="https://jp.linkedin.com/">LinkedIn</a>
        <a href="https://about.gitlab.com/ja-jp/">GitHub</a>
</div>
        </main>

</body>

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

ブラウザ情報:

ユーザーエージェント: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/137.0.0.0 Safari/537.36

チャレンジの情報:

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

you were not asked to add this, so there are issues with some tests

I delated main, it works!
Thank you :slight_smile: