This forum is now read-only. Please use our new forums! Go to forums

0 points
Submitted by Arezoo
over 8 years

Can you swing it? 8/23 i can not found why my code is not correct!

p{ font-family: garamomd; } body p{ font-weight: bold; } div> p { color: #7ac5cd; } ul p{ color: #000000; text-decoration: underline; }

Answer 5605f8a29113cb6c18000233

5 votes

Permalink

I did this and it passed:::::::::

 /*Add your CSS below!*/

body p {
    font-family: Garamond;
}

body > p {
    font-weight: bold;
}

div > p {
    color: #7AC5CD;
}

ul li p {
    color: #000000;
    text-decoration: underline;
}
points
Submitted by ajagbe
over 8 years

2 comments

Joshua Jerrick over 8 years

Great Answer

ajagbe over 8 years

Thanks !

Answer 5605a1e3d3292f08150005c3

0 votes

Permalink

Doesn’t Garamond have to be capitalized?

p{ font-family:Garamond; }

body p { font-weight:bold; }

div>p{ color:#7AC5CD; }

ul p{ color:#000000; text-decoration:underline; }

points
Submitted by Derek S Nye
over 8 years

Answer 560c35c1d3292ff71c000021

0 votes

Permalink

this one was a tricky one

points
Submitted by Hagai (guy) Zwick
over 8 years

Answer 560c772d51b887b8150000f4

0 votes

Permalink

p{ font-family:Garamond; } body{ font-weight:bold } div p{ color: #7AC5CD }

div ul p{ color:#000000; text-decoration:underline;
} I am using Linux 17.2 this worked to pass not sure if it’s perfect.

points
over 8 years

Answer 560ef0e0d3292f6ec30000bc

0 votes

Permalink

p { font-family: Garamond; }

p { font-weight: bold; }

div p { font-weight: bold #7AC5CD; }

p { color: #7AC5CD; }

li p { text-decoration: underline; color: #000000; }

i did this

points
Submitted by ICEWARZ
over 8 years

Answer 5614314251b8871c020000b1

0 votes

Permalink

this is really starting to annoy me i did this, wwhy i am i getting it wrong:

p { font-family:Garamond; }

body > p { font-weight:bold; }

div > p { color:#7ac5cd; }

ul li p { color:#000000; text-decoration:underline; }

points
Submitted by yak78
over 8 years