<html> <head> <title>Dynamic Styles</title> <script language="JavaScript"> function showMe() {

   MyHeading.style.color = "red";
   MyList.style.display = "";

} </script> </head> <body onclick="showMe()">l id="MyList" style="display:none">

  • Change the color, size, and typeface of text
  • Show and hide text
  • And much, much more
  • </body> </html> [edit]