Complete the code to make the text bold using Tailwind CSS.
<p class="[1]">This text is bold.</p>
text-lg instead of font weight.text-center which do not affect weight.The font-bold class in Tailwind CSS makes the text bold by setting a heavier font weight.
Complete the code to make the text have a light font weight using Tailwind CSS.
<span class="[1]">This text is light.</span>
font-semibold which is heavier than normal.font-extrabold which is very heavy.The font-light class applies a lighter font weight, making the text appear thinner.
Fix the error in the class to make the text have normal font weight.
<div class="[1]">Normal weight text.</div>
font-heavy which does not exist.font-bold which is heavier than normal.The correct Tailwind class for normal font weight is font-normal. font-heavy is not a valid class.
Fill both blanks to make the heading bold and centered.
<h1 class="[1] [2]">Welcome!</h1>
font-light instead of bold.text-left which aligns text to the left.font-bold makes the text bold, and text-center centers the text horizontally.
Fill all three blanks to create a paragraph with semi-bold font, right-aligned text, and large font size.
<p class="[1] [2] [3]">Styled paragraph.</p>
font-light instead of semi-bold.text-left instead of right alignment.text-sm.font-semibold applies a semi-bold font weight, text-right aligns text to the right, and text-xl sets a large font size.