Okay, how did I do that?

Well, here is the code:

<SCRIPT LANGUAGE="javascript">
                    document.write("<FONT COLOR='BLUE'>Look at this! It's blue.</FONT>")
                    </SCRIPT>



<SCRIPT LANGUAGE="javascript">   Means you are telling the browser what language to use.

</SCRIPT> ends the section of javascript

document. means on this page write("") means that whatever you put inside the quotation marks will
appear as html code on this page.
not too hard for a first lesson huh?

Could you do that now? Try it and see.