Complete the code to apply a readable font size using Tailwind CSS.
<p class="text-[1]">This is a paragraph with controlled typography.</p>
The text-base class sets a comfortable default font size for body text, improving readability.
Complete the code to add proper line spacing for better readability.
<p class="leading-[1]">Good line height helps users read text easily.</p>
The leading-relaxed class increases line height, making text easier to scan and read.
Fix the error in the class to set the font weight for emphasis.
<strong class="font-[1]">Important text</strong>
font-light which makes text thinner.font-normal which is default weight.The font-bold class makes text bold, which is good for emphasis.
Fill both blanks to create a heading with large size and tight letter spacing.
<h1 class="text-[1] tracking-[2]">Welcome to the site</h1>
Using text-5xl makes the heading large, and tracking-tight reduces space between letters for a neat look.
Fill all three blanks to style a paragraph with medium font weight, relaxed line height, and base font size.
<p class="font-[1] leading-[2] text-[3]">This paragraph is easy to read.</p>
The combination of font-medium, leading-relaxed, and text-base creates balanced and readable text.