JavaScript DHTML/HTML/Header

Материал из Web эксперт
Перейти к: навигация, поиск

H1 mouse in and mouse out

   <source lang="html4strict">

<html> <head> <title>A Simple Page</title> <script language="JavaScript"> function colorchange() {

   head1.style.color = "red";

} function colorchangeback() {

   head1.style.color = "black";

} </script> </head> <body>

Mouse mouse in!

</body> </html>

 </source>
   
  


HTML Header profile

   <source lang="html4strict">

   

<html> <head id="myHeader"> <script language="JavaScript"> function function1() {

  alert("The following profile has been added:\n"http://www.wbex.ru"");
  document.all.myHeader.profile = "http://www.wbex.ru"; 

} </script> </head> <body> <input type="button" value="Add profile" onClick="function1();"> </body> </html>


 </source>