Complete the code to make the text uppercase using Bootstrap utility classes.
<p class="text-[1]">This text will be uppercase.</p>
text-lowercase instead of text-uppercase.The text-uppercase class in Bootstrap transforms text to uppercase.
Complete the code to make the text lowercase using Bootstrap utility classes.
<span class="text-[1]">THIS TEXT WILL BE LOWERCASE.</span>
text-uppercase instead of text-lowercase.The text-lowercase class in Bootstrap transforms text to lowercase.
Fix the error in the code to capitalize the first letter of each word using Bootstrap utility classes.
<div class="text-[1]">this text will be capitalized.</div>
text-uppercase which makes all letters uppercase.text-lowercase which makes all letters lowercase.The text-capitalize class in Bootstrap capitalizes the first letter of each word.
Fill both blanks to create a paragraph with normal text case and bold font using Bootstrap utilities.
<p class="text-[1] fw-[2]">This text is normal case and bold.</p>
text-uppercase instead of text-normal-case.fw-normal instead of fw-bold.Use text-normal-case for normal text and fw-bold for bold font weight in Bootstrap.
Fill all three blanks to create a span with capitalized text, italic style, and small font size using Bootstrap utilities.
<span class="text-[1] fst-[2] fs-[3]">Styled text</span>
text-uppercase instead of text-capitalize.fst-normal instead of fst-italic.fs-lg instead of fs-sm.Use text-capitalize for capitalized text, fst-italic for italic font style, and fs-sm for small font size in Bootstrap.