Tell us what’s happening:
Can some explain what should be done here with the text-decoration property. I have tried every selector or is this supposed to be a value?
Your code so far
<!-- file: index.html -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="styles.css">
<title>Business Card</title>
</head>
<body>
<div class="business-card">
<img class="profile-image" src=
"https://cdn.freecodecamp.org/curriculum/labs/flower.jpg" alt="card">
<p class="full-name"> </p>
<p class="designation"> </p>
<p class="company"> </p>
</div>
</body>
</html>
/* file: styles.css */
body{
background-color: rosybrown;
font-family: Arial,sans-serif;
}
p {
margin-top: 5px;
margin-bottom: 5px;
}
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