CSS Typography and Fonts Quiz
Want to learn more than this quiz offers you? Have a look at my Frontend web
development courses.
Create an account and save your quiz results
Login and save your results
OR
Question 1/15
What CSS property increases the space between words?
Select your answer
Question 2/15
What CSS property is used to change the text color?
Select your answer
Question 3/15
Which CSS property is used to change the font for a specific text element?
Select your answer
Question 4/15
How can text be underlined using CSS?
Select your answer
Question 5/15
How do you make the text bold using CSS?
Select your answer
Question 6/15
To bold text in CSS, which property should you use?
Select your answer
Question 7/15
Which CSS property would you use to set the space between letters?
Select your answer
Question 8/15
Which property specifies the capitalization of text?
Select your answer
Question 9/15
What CSS property is used to transform text to uppercase?
Select your answer
Question 10/15
What value of 'font-style' makes text italic in CSS?
Select your answer
Question 11/15
How do you apply a shadow to text in CSS?
Select your answer
Question 12/15
What is the correct syntax in CSS for setting the default font for the body tag?
Select your answer
Question 13/15
What is the CSS property for controlling the vertical space between lines of text?
Select your answer
Question 14/15
What is the CSS syntax for making all characters lowercase?
Select your answer
Question 15/15
Which CSS property controls the size of the font?
Select your answer
Your Results
You did not answer any questions correctly.
Your Answers
Question 1/15
😊 Your
answer was correct
🙁 Your
answer was incorrect
What CSS property increases the space between words?
Available answers
The
word-spacing
property increases the space between words in a text.
Question 2/15
😊 Your
answer was correct
🙁 Your
answer was incorrect
What CSS property is used to change the text color?
Available answers
The
color
property in CSS sets the color of the text.
Question 3/15
😊 Your
answer was correct
🙁 Your
answer was incorrect
Which CSS property is used to change the font for a specific text element?
Available answers
The
font-family
property is used to specify the font of a text element.
Question 4/15
😊 Your
answer was correct
🙁 Your
answer was incorrect
How can text be underlined using CSS?
Available answers
Use
text-decoration: underline;
to underline text in CSS.
Question 5/15
😊 Your
answer was correct
🙁 Your
answer was incorrect
How do you make the text bold using CSS?
Available answers
To make text bold in CSS, use
font-weight: bold;
.
Question 6/15
😊 Your
answer was correct
🙁 Your
answer was incorrect
To bold text in CSS, which property should you use?
Available answers
The
font-weight
property in CSS specifies the weight (or boldness) of the text.
Question 7/15
😊 Your
answer was correct
🙁 Your
answer was incorrect
Which CSS property would you use to set the space between letters?
Available answers
The
letter-spacing
property in CSS is used to set the space between characters in a text.
Question 8/15
😊 Your
answer was correct
🙁 Your
answer was incorrect
Which property specifies the capitalization of text?
Available answers
The
text-transform
property controls the capitalization of text (e.g., uppercase, lowercase).
Question 9/15
😊 Your
answer was correct
🙁 Your
answer was incorrect
What CSS property is used to transform text to uppercase?
Available answers
To transform text to uppercase, use the
text-transform
property with the value uppercase
.
Question 10/15
😊 Your
answer was correct
🙁 Your
answer was incorrect
What value of 'font-style' makes text italic in CSS?
Available answers
The
font-style
property in CSS uses the value italic
to make text italic.
Question 11/15
😊 Your
answer was correct
🙁 Your
answer was incorrect
How do you apply a shadow to text in CSS?
Available answers
The
text-shadow
property in CSS applies shadows to text.
Question 12/15
😊 Your
answer was correct
🙁 Your
answer was incorrect
What is the correct syntax in CSS for setting the default font for the body tag?
Available answers
To set the default font for the
body
tag, use body { font-family: Arial, sans-serif; }
.
Question 13/15
😊 Your
answer was correct
🙁 Your
answer was incorrect
What is the CSS property for controlling the vertical space between lines of text?
Available answers
The
line-height
property is used to control the vertical spacing between lines of text.
Question 14/15
😊 Your
answer was correct
🙁 Your
answer was incorrect
What is the CSS syntax for making all characters lowercase?
Available answers
The
text-transform: lowercase;
syntax is used to make all characters in the text lowercase.
Question 15/15
😊 Your
answer was correct
🙁 Your
answer was incorrect
Which CSS property controls the size of the font?
Available answers
The
font-size
property in CSS is used to set the size of the font.