What is wrong with my code?
h3 {
color:red;
};
p{
font-family: Courier;
};
span{
back-ground-color: yellow;
};
1 Like
just did js? After a }
in css, there shouldn’t be any semi-colons (;
). and your background-color contains a hyphen too many
2 Likes
Thank you-- Now I got it.
1 Like