14.2k views
5 votes
Write some html on a css page that transforms a sentence within a paragraph to tahoma font style, 16px font size, and red font color.

User CampbellMG
by
6.5k points

2 Answers

1 vote

Answer:

P {

font-style: tahoma;

font-size: 16px;

font-color: red;

}

Step-by-step explanation:

User Julien BONNIN
by
6.3k points
4 votes
P {
font-style: tahoma;
font-size: 16px;
font-color: red;
}
User Christilyn Arjona
by
5.9k points