Design a Business Card - Design a Business Card

Tell us what’s happening:

I have done what i was told to do but i still keep getting the same error message “18. After the second hr element, there should be a div element with a class attribute with a value of social-media.”. Please how do i clear it?

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>
<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">Olusegun Afolabi</p>
    <p class="designation">Software Developer</p>
    <p class="company">Okokobioko</p>
    <hr>
    <p>Email Address:<a href="mailto:bawseoflyf@gmail.com"> bawseoflyf@gmail.com</a></p>
    <p>Phone: <a href="tel:+2348061641936">+234 8061641936</a></p>
    <a class="portfolio-link" href="https://www.freecodecamp.org/learn/responsive-web-design-v9/#workshop-cafe-menu">Portfolio</a>
    <hr>
    </div>

<div class="social-media">
<h2>Connect with me</h2>
<a href="https://x.com/9javortex" target="_blank">Twitter</a>
<a href="https://www.linkedin.com/in/billiondollarcodes/" target="_blank">LinkedIn</a>
<a href="https://github.com/Codepros007" target="_blank">GitHub</a>
</div>
<body>

</body>

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

Challenge Information:

Design a Business Card - Design a Business Card

Count your <hr> elements and add the div with the class on the second one.

after your hr there is a closing tag, not an other div element

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