View Single Post
Old 12-24-2019, 07:03 PM   #3
deback
Book E d i t o r
deback ought to be getting tired of karma fortunes by now.deback ought to be getting tired of karma fortunes by now.deback ought to be getting tired of karma fortunes by now.deback ought to be getting tired of karma fortunes by now.deback ought to be getting tired of karma fortunes by now.deback ought to be getting tired of karma fortunes by now.deback ought to be getting tired of karma fortunes by now.deback ought to be getting tired of karma fortunes by now.deback ought to be getting tired of karma fortunes by now.deback ought to be getting tired of karma fortunes by now.deback ought to be getting tired of karma fortunes by now.
 
Posts: 432
Karma: 288184
Join Date: May 2015
Device: Laptop
Example of a sentence:

<p class="calibre1">This is a sentence.</p>


To add italics to the words "a sentence," add one of the following sets of codes:

<p class="calibre1">This is <i class="italic">a sentence.</i></p>

-or-

<p class="calibre1">This is <span class="italic">a sentence.</span></p>

Then add the following code into your stylesheet.css file:

.italic {
font-style: italic;
}
deback is offline   Reply With Quote