Tell us what’s happening:
It keep failing me on the font style and the underlines. can anyone explain what i am overlooking? i have done a search here on freecodeaccademy and a net search. I still dont see why it is failing me.
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>
<body>
<div class="business-card" />
<img class="profile-image" src="https://cdn.freecodecamp.org/curriculum/labs/flower.jpg" alt="Profile Image" />
<p class="full-name">Alex Scott</p>
<p class="designation">Full Stack Dev</p>
<p class="company">Wild Flower Dev Solutions inc.</p>
<hr>
<p>WDev@example.com</p>
<p>(444)678-9562</p>
<a href="https://cdn.freecodecamp.org/curriculum/labs/flower.jpg"/>Portfolio</a>
<hr>
<div class="social-media">
<h2>Connect with me</h2>
<a href="https://cdn.freecodecamp.org/curriculum/labs/flower.jpg">Twitter</a>
<a href="https://cdn.freecodecamp.org/curriculum/labs/flower.jpg">LinkedIn</a>
<a href="https://cdn.freecodecamp.org/curriculum/labs/flower.jpg">GitHub</a>
</body>
</html>
/* file: styles.css */
body {
background-color: rosybrown;
font-style: Arial, Sans-sarif
}
p {
margin-top: 5px;
margin-bottom: 5px;
}
.business-card {
width: 300px;
background-color: peru;
padding: 20px;
margin: 100px;
text-align: center;
font-size: 16px;
margin-left: auto;
margin-right: auto;
}
.profile-image {
max-width: 100%;
}
social-media {
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/137.0.0.0 Safari/537.36 Edg/137.0.0.0
Challenge Information:
Design a Business Card - Design a Business Card