Tell us what’s happening:
There is this problem to remove underline on the links of page i have don that using “text-decoration: none” but the page keeps on saying to do it.
Your code so far
<!-- file: index.html -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<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 picture of Rishi">
<p class="full-name">Rishi Yadav</p>
<p class="designation">Student</p>
<p class="company">Tribhuwan University</p>
<hr>
<p class="info">Email: rishi91923.main@gmail.com</p>
<p class="info">Location: Jhapa, Nepal</p>
<a href="https://www.forbes.com/profile/elon-musk/" class="portfolio-link" target="_blank">Portfolio</a>
<hr>
<div class="social-media">
<h2 class="connect title">Connect with me</h2>
<a class="social-link" href="https://x.com/Rishi156290">Twitter</a>
<a class="social-link" href="https://www.linkedin.com/in/rishi-yadav-377362410/">LinkedIn</a>
<a class="social-link" href="https://github.com/Zypherix69">GitHub</a>
</div>
</div>
</body>
</html>
/* file: styles.css */
body {
font-family: Arial, sans-serif;
background-color: rosybrown;
padding-top: 40px;
text-align: 40px;
}
.business-card {
width: 300px;
background-color: #ecf0f1;
margin-top: 100px;
padding: 20px;
border: 2px solid #34495e;
border-radius: 10px;
text-align: center;
font-size: 16px;
margin-left: auto;
margin-right: auto;
}
.profile-image {
max-width: 100%;
height: 150px;
border-radius: 50%;
border: 3px solid #34495e;
}
.full-name {
font-size: 26px;
}
p {
margin: 5px;
}
.social-link {
color: #c0392b;
text-decoration: none;
margin: 0 10px;
font-size: 15px;
}
.portfolio-link {
color: #2980b9;
text-decoration: none;
font-weight: bold;
}
Your browser information:
User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.0.0 Safari/537.36 Edg/149.0.0.0
Challenge Information:
Design a Business Card - Design a Business Card