Tell us what’s happening:
I cannot seem to pass the test of making all of the links appear without an underline as default. I have achieved the result but the test will not pass.
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 class="profile-image" src="https://cdn.freecodecamp.org/curriculum/labs/flower.jpg" alt="A beautiful pale pink flower.">
<p class="full-name">Naomi Parker</p>
<p class="designation">Software Engineer</p>
<p class="company">Sites By Naomi</p>
<hr>
<p>Naomiparker0923@yahoo.com</p>
<p>0003974802</p>
<a href="https://betterbullion.com/gold-price-forecast-2030-and-beyond/">Portfolio</a>
<hr>
<div class="social-media">
<h2>Connect with me</h2>
<a href="https://www.youtube.com/">Twitter</a>
<a href="https://www.youtube.com/">LinkedIn</a>
<a href="https://www.youtube.com/">GitHub</a>
</div>
</div>
</body>
</html>
/* file: styles.css */
body {
background-color: rosybrown;
font-family: Arial, sans-serif;
}
img {
width: 100px
}
a:link {
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
p {
margin-top: 5px;
margin-bottom: 5px;
}
link {
}
.business-card {
width: 300px;
background-color: pink;
padding: 20px;
margin-top: 100px;
font-size: 16px;
text-align: center;
margin-left: auto;
margin-right: auto;
}
hr {
border-top: 1px dashed slategray;
}
Your browser information:
User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36
Challenge Information:
Design a Business Card - Design a Business Card