Complete the code to make the text italic.
p {
font-style: [1];
}The font-style property controls the style of the font. To make text italic, use italic.
Complete the code to make the font weight bold.
h1 {
font-weight: [1];
}The font-weight property controls how thick or thin the text appears. Use bold to make text thicker.
Fix the error in the code to correctly set the font style to oblique.
div {
font-style: [1];
}The font-style property accepts normal, italic, and oblique. To slant text with a slight angle, use oblique.
Fill both blanks to set the font style to italic and font weight to normal.
span {
font-style: [1];
font-weight: [2];
}Use italic for font-style to slant text, and normal for font-weight to keep text thickness standard.
Fill all three blanks to set font style to oblique, font weight to bold, and font variant to small-caps.
p {
font-style: [1];
font-weight: [2];
font-variant: [3];
}Set font-style to oblique for slanted text, font-weight to bold for thick text, and font-variant to small-caps for uppercase small letters.