Tell us what’s happening:
Hi all,
I am stuck on step 30 of “Design a Business Card”, where I should have “a phone number as text”. I have already checked the forum and other online sources. No matter if I add an href or not, if I wrap it in a p element or not, I always get the same result or even worse. With this code, every step is fine but step no. 30. Does anyone see what I do not see?
Thank you
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>
<div class="business-card">
<img src="https://cdn.freecodecamp.org/curriculum/labs/flower.jpg" class="profile-image" alt="Profile Image">
<p class="full-name">John Doe</p>
<p class="designation">The Best of all</p>
<p class="company">John Doe Inc.</p>
<hr>
<p>
<a href="mailto:me@fakemail.com">me@fakemail.com</a>
</p>
<p>
<a href="tel:0123-4567-890">0123-4567-890</a>
</p>
<a href="https://portfolio.com" taget="_blank">Portfolio</a>
<hr>
<div class="social-media">
<h2>Connect with me</h2>
<a href="https://x.com">Twitter</a>
<a href="https://facebook.com">LinkedIn</a>
<a href="https:/github.com">GitHub</a>
</div>
</div>
</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 {
background-color: grey;
width: 300px;
padding: 20px 20px 20px 20px;
margin-top: 100px;
margin-left: auto;
margin-right: auto;
font-size: 16px;
text-align: center;
}
.profile-image {
max-width: 100%;
}
.social-media {
background-color: grey;
width: 300px;
padding: 20px 20px 20px 20px;
margin-top: 100px;
margin-left: auto;
margin-right: auto;
font-size: 16px;
text-align: center;
}
Your browser information:
User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.4 Safari/605.1.15
Challenge Information:
Design a Business Card - Design a Business Card