How can you make text appear in uppercase using CSS?
A). text-transform: uppercase;
B). font-transform: uppercase;
C). transform: uppercase;
D). text-style: uppercase;
How can you underline text using CSS?
A). text-decoration: underline;
B). font-decoration: underline;
C). decoration: underline;
D). text-style: underline;
How can you make text bold using CSS?
A). font-weight: bold;
B). font-style: bold;
C). text-weight: bold;
D). font-bold: true;
What does the font-weight property do in CSS?
A). It sets the font size.
B). It sets the font weight.
C). It sets the font style.
D). It sets the font family.
Which property is used to specify the size and style of the font at once?
A). font: italic bold 16px Arial;
B). font-style: italic bold 16px Arial;
C). font-family: Arial;
D). font-size: 16px;
Which property is used to specify the color of the text?
A). color: #000000;
B). text-color: red;
C). font-color: blue;
D). text-style: color;
What is the default font size in CSS?
A). 10px
B). 14px
C). 16px
D). 12px
Which CSS property is used to specify whether the text should be in uppercase or lowercase?
A). text-transform: uppercase;
B). font-transform: uppercase;
C). case: uppercase;
D). transform: uppercase;
Which CSS property is used to define the font family?
A). <span style='font-family: Arial;'>Arial
B). <span style='font-family: Helvetica;'>Helvetica
C). <span style='font-family: Times New Roman;'>Times New Roman
D). <span style='font-family: Courier;'>Courier
How can you set italic text using CSS?
A). font-style: italic;
B). text-style: italic;
C). italic: true;
D). font-italic: true;