Design a Business Card - Design a Business Card

Tell us what’s happening:

Please help. I have put in the valid links but it’s still telling me it’s incorrect.

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>
   <main>
       <div class="business-card">
           <img class="profile-image" src="https://cdn.freecodecamp.org/curriculum/labs/flower.jpg" alt="a pink flower">
    <p class="full-name">Yetunde Akindele</p>
    <p class="designation">Software Developer</p>
    <p class="company">Vesteroll Nigeria Limited</p>
    <hr>
    <p>Email: <a href="mailto:yettybright2000@gmail.com">yettybright2000@gmail.com</a></p>
    <p>Phone Number: <a href:"tel:+2348165154649">+234 816 515 4649</a></p>
    <a href="https://zaya-jpg.github.io/my-developer-website/">Portfolio</a>
    <hr>
  <div class="social-media">
      <h2>Connect with me</h2>
      <a href:"https://x.com/zaya__official?=21" target="_blank">Twitter</a>
      <a href:"https://www.linkedin.com/in'yetunde-akindele-97b37b28a">LinkedIn</a>
      <a href:"https://github.com/Zaya-jpg" target="_blank">GitHub</a>
      </div>
   </main>
</body>

</html>
/* file: styles.css */
body {
  background-color: rosybrown; 
  font-family: Arial, sans-serif; 
}
p {
  margin-top: 5px;
  margin-bottom: 5px;
}
a {
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
.business-card {
  width: 300px;
  background-color: beige;
  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 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36

Challenge Information:

Design a Business Card - Design a Business Card

Hi. The syntax for your href attributes inside your anchor tags are wrong. Should be href= not href:

Jeez! That was a mistake. My mind totally skipped it. Thank you so much.

1 Like