Design a Business Card - Design a Business Card

Tell us what’s happening:

I keep getting stuck at this step
29. After the phone number p element, there should be an a element with the text Portfolio
I have tried many days, and there’s no issues with my anchor element for the text “Portfolio”. Please help

Your code so far

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

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

<body>
<div class="business-card">
<main>
    <img class="profile-image" src="https://cdn.freecodecamp.org/curriculum/labs/flower.jpg" alt="profile picture">
    <p class="full-name">Giang Nguyen</p>
<p class="designation">Software Developer</p>
<p class="company">@freeCodeCamp</p>
<hr>
<p>Email: giangq.nguyen02@gmail.com</p>
<p>Phone number: (267) 278-2035</p>
<a href="https://www.behance.net/search/projects/web%20design%20portfolio">Portfolio</a>
<hr>
<div class="social-media">
<h2>Connect with me</h2>
<a href="https://x.com/">Twitter</a>
<a href="https://www.linkedin.com/in/giang-nguyen-7963b2246/">LinkedIn</a>
<a href="https://github.com/">GitHub</a>
</div>
</main>
</div>
</body>

</html>
/* file: styles.css */
body {background-color: rosybrown;font-family: Arial, sans-serif;
}
.business-card {width: 300px;
background-color: pink;
padding:20px;
text-align: center;
font-size: 16px;
margin-top: 100px;
margin-right: auto;
margin-left: auto;
border-style: solid;
border-color: darkgreen;
border-width: medium
}
.profile-image {max-width: 100%;
width: 200px;
border-radius: 10px;}
p {margin-top: 5px;
margin-bottom: 5px;}
a {text-decoration: none;
color:blue;}
a.visited {color: black;}
a.hover {color: brown;}
a.active {color: brown;}
.full-name {margin-top: 18px;
font-size: 25px;
font-style: bold;
color: darkslategrey}
.designation {font-size: 20px;
margin: 10px;
color: dimgray}
.company {color: grey}

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/137.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

you have added extra elements so the tests are not able to find the element with Porfolio

the main element was not asked for

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.