View Single Post
Old 08-09-2024, 09:19 AM   #3
Turtle91
A Hairy Wizard
Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.
 
Turtle91's Avatar
 
Posts: 3,355
Karma: 20171571
Join Date: Dec 2012
Location: Charleston, SC today
Device: iPhone 15/11/X/6/iPad 1,2,Air & Air Pro/Surface Pro/Kindle PW & Fire
You can certainly add your own styling to the <strong>/<em> css so that it shows how you like. eg.
Code:
em.para {font-size:1.1em; font-weight:600; color:navy}

html:
<p>Lorem ipsum odor amet, consectetuer adipiscing elit.</p>

<p><em class="para">Famines do not just happen; they are created</em></p>

<p>Dolor mattis nisl vestibulum netus cubilia porttitor.</p>
Or, as I prefer:

Code:
p.emph {font-size:1.1em; font-weight:600; margin:1em; color:navy; text-indent:0}

html:
<p>Lorem ipsum odor amet, consectetuer adipiscing elit.</p>

<p class="emph">Famines do not just happen; they are created</p>

<p>Dolor mattis nisl vestibulum netus cubilia porttitor.</p>
Turtle91 is offline   Reply With Quote