$$Return and html

I have the following code in the $$Return. I am just trying to change the font color to red and make the font about 13 point font. I am new to html and javascript can someone please help me with this. Thanks inadvance.

abnnote := “

” + “Your out of luck” + " “+CurrentUser+ " - " + " Your order will be routed to OHVI Center” + “!

”;

Subject: $$Return and html

First, your formula is rather more complex than it needs to be. Second, it doesn’t do anything to change the color of the text. Your computed expression could look something like this:

You’re out of luck, " + CurrentUser + " - Your order will be routed to OHVI Center!

There are probably superior but also more complex solutions involving CSS. No JavaScript is necessary.