I am currently learning CSS. I attempted to make a portion of my text italicized, but for some reason, the text refuses to adopt the desired style. Any ideas on what might be causing this issue?
.bold {
font-weight: bold;
}
.italic {
font-weight: italic;
}
<p>This is an example text</p>
<p class="bold">This is some bolded text</p>
<p class="italic">This is supposed to be italicized text</p>