Markdown: How to apply more than one Markdown to text at the same time?

Hello. How can I increase font size, italicize, and center text on the page all at the same time? Thank you!

To do this you’ll take the same HTML from this topic but change around some things.

<div style="text-align:center;width:100%;font-size:1.6em"><i>insert bold text here</i></div>

The <i></i> makes it italic and font-size:1.6em changes the font size. Play around with the number until you achieve your desired size. I found this chart a useful resource for font-sizes too:

2 Likes

cjeller1592, thanks for reminding me of the previous topic. Also, thanks for the resource for converting font size. I was wondering about that! Thanks, again.