Tell us what’s happening:
I keep getting this flagged even thought mine looks right: After the two p elements, there should be an a element with a class of portfolio-link, the text Portfolio, and it should link to a valid URL.
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">
</head>
<body>
<div class="business-card">
<img class="profile-image" src="https://cdn.freecodecamp.org/curriculum/labs/flower.jpg" alt="profile image">
<p class="full-name">Lauren Wang</p>
<p class="designation">New York</p>
<p class="company">NYU</p>
<hr>
<p>lrnwng@email.com</p>
<p>415-789-1234</p>
<a class="portfolio-link" href="https://example.com">Portfolio</a>
<hr>
<div class="social-media">
<h2>Connect with me</h2>
<a>Twitter</a>
<a>LinkedIn</a>
<a>GitHub</a>
</div>
</div>
</body>
</html>
/* file: styles.css */
Your browser information:
User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/147.0.0.0 Safari/537.36
Challenge Information:
Design a Business Card - Design a Business Card