How do I mix font-family, font-size, font-color, font-weight properties to affect the appearance of a paragraph - all at once . | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

How do I mix font-family, font-size, font-color, font-weight properties to affect the appearance of a paragraph - all at once .

Urgent please.

17th Jul 2016, 6:03 PM
Wilson Mudonge Mudenga
Wilson Mudonge Mudenga - avatar
4 Answers
+ 2
if you go back to the vertical align section you can get a basis off from there. <head> <style type="text/css"> .style{ font-family:"Times New Roman; font-size:130%; color:red; } </style> </head> <body> <p class="style"> *final edit*
18th Jul 2016, 5:44 AM
Seth Kozek
Seth Kozek - avatar
+ 2
p{ font-family:monospace; font-size:130%; color:red; font-weight:bold; }
19th Jul 2016, 9:05 AM
Yas Tech
Yas Tech - avatar
0
CSS Property Shorthand: p { font: 16px/18px bold italic san-serif; /* size/line height, weight, style, family */ }
4th Aug 2016, 6:13 PM
Serling
Serling - avatar
0
Thanks to all for your response to my question. It was only after I learned CSS, that I found it easy doing the process above. Otherwise your answers are right. Thanks once more...
4th Aug 2016, 6:41 PM
Wilson Mudonge Mudenga
Wilson Mudonge Mudenga - avatar