CableGuy is right
Hello! <B>This is a test </B> <BLUE>And I don't remember HTML well</BLUE>
should be officially
Code:
<html>
<head>
<body>
@
Hello! <b>This is a test </b><p style="color:#0000CC">And I don't remember HTML well</p>
@
</body>
</head>
</html>
this will print below each other
if you need it in-line use
Code:
Hello! <b>This is a test </b><span style="color:#0000CC">And I don't remember HTML well
</span>
the stuff between the @ needs to be dynamic (since that can change), the rest can be a hardcoded template