Código:
<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> <title>Hallar el area del cuadrado</title> <script languaje="JavaScript"> function area() { b=document.datos.b.value; h=document.datos.h.value; document.datos.s.value=b*h; } </script> </head> <body bgcolor=cyan> <form name="datos"> base<input type="text" name="b" id="b"> altura<input type="text" name="h" id="h"> <BR> area=<input type="text" name="s" id="s"> <input type="button" value="Hallar área" OnClick="area()"> </form> </body> </html>