well, it actually is javascript. html don't do anything by itself. that is, html document are static and javascript add the dynamic behavior. the following is a sample code with inline javascript:
<input type='text' value='Type something...' onclick='this.value = "";' />
I notice this does not happen on your Name... and Email... below. Am I missing something? Is there some other code I need?
Your help is much appreciated.
<input type='text' value='Type something...' onclick="if (!clicked) { this.value = ''; clicked=true; } " />
<input type='text' value='Type something...' onclick='this.value = "";' /