This paragraph is blue
<p style = "color: blue"> This paragraph is blue </p>
This paragraph is on a yellow background
<p style = "background-color: yellow"> This paragraph is on a yellow background </p>
This paragraph is blue on a yellow background
<p style = "color: blue";
background-color: yellow">
This paragraph is blue on a yellow background
</p>
This paragraph is in Comic Sans, or in cursive if Comic Sans is not available. (The cursive font is generic)
<p style = "font-family: Comic Sans MS, Cursive"> This paragraph is in Comic Sans, or in cursive if Comic Sans is not available. (The cursive font is generic) </p>
This paragraph is in 30 pts if possible
<p style = "font-size: 30pt"> This paragraph is in 30 pts if possible </p>
This paragraph is centered
<p style = "text-align: center"> This paragraph is centered </p>
This paragraph is right-justified,
with blue text on a yellow background,
using a 20 pt Comic Sans Font
<p style = "text-align: right;
font-family: Comic Sans MS;
font-size: 20pt;
color: blue;
background-color: yellow">
This paragraph is right-justified, <br />
with blue text on a yellow background, <br />
using a 20 pt Comic Sans Font
</p>