bgcolor="lightgray"), a heading in dark blue (color="navy"), and paragraph text in purple (color="purple").bgcolor attribute inside the <body> tag and wrap your heading/paragraph text with <font color="..."> tags.
<!DOCTYPE html> <html> <body bgcolor="lightgray"> <h1> <font color="navy">Welcome to HTML Presentational Styling</font> </h1> <p> <font color="purple">This paragraph text is styled directly using the classic HTML font tag.</font> </p> </body> </html>
This paragraph text is styled directly using the classic HTML font tag.
bgcolor on the <body> element to set document background colors, and the <font color="..."> tag to control text color inline.