Help me in solving FASH03 problem

My issue

i can’t understand the question let me give an overview how can i add that

My code

// your code goes here

Learning course: Projects using HTML / CSS
Problem Link: FS COMMON CSS Practice Problem in Projects using HTML / CSS - CodeChef

Hii @bhumika813,
So basically here in this question it asked you to complete the styling of the html element in the style.css file.

  1. So first of all you need to style the universal selector i.e, *, by defining it’s margin and padding as 0 and then givethe font-family as “Arial and sans-sarief”.
  2. Then Secondly do styling the anchor tag by a, and give it’s color as black, font-weight as 500 and text-decoration as “none”.

I am here writing the code that you can refer to solve this.
Thank you😊

*{
margin: 0;
padding: 0;
font-family: Arial,Sans-Serif;
}

a{
color: black;
font-weight: 500;
text-decoration: none;
}

1 Like