Kizspy | Question: 12
(Choose 1 answer)
Assume that this code is linked together correctly.
<p class="fancy plain">Hi</p>
What color font is used to display "Hi"?
A. red
B. green
C. black
D. browser default
p{
color:red;
padding: 10px 5px;
background: black;
}
.fancy{
font-family: cursive;
background: red;
color: green;
}
.plain{
}
font-family: Times, serif;
color:black;