Design a Business Card - Design a Business Card

Tell us what’s happening:

im not sure why its not passing am i missing something
when i remove the style opening tags it removes the color. i need help someone please help me understand what i need to be doing.

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">
<style>
   body {
  background-color: rosybrown;
  font-family: Arial, sans-serif;
}
</style>

</head>

<body>

</body>

</html>
/* file: styles.css */

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36 Edg/134.0.0.0

Challenge Information:

Design a Business Card - Design a Business Card

Hi there,
It looks like this challenge isn’t complete yet, you still need to follow all the user stories and fulfill all the listed requirements. Also, instead of using a style element, make sure to remove it completely and place all your styles in the external CSS file, linking it properly using the link tag in your HTML. This aligns with the challenge instructions and is a best practice for clean, maintainable code.

1 Like

AH I see Thank you!
I finally got it. I was so lost trying to find out where the CSS goes!
Thank you so much!

1 Like