Il suffit d'accéder aux attributs de style de ta page et de les modifier.
Un exemple pour changer la couleur de fond:
<html>
<head>
<script>
function color(aColor){
document.body.bgColor=aColor
}
</script>
</head>
<body bgcolor="blue">
<div style="background-color:red" onClick="color('red')">
Cliquer ici pour avoir un fond en rouge
</div>
<div style="background-color:blue" onClick="color('blue')">
Cliquer ici pour avoir un fond en bleu
</div>
<div style="background-color:black" onClick="color('black')">
Cliquer ici pour avoir un fond en noir
</div>
<div style="background-color:white" onClick="color('white')">
Cliquer ici pour avoir un fond en blanc
</div>
</body>
</html>
The SMURF
the_little_smurf@yahoo.fr
Enjoy the life, don't waste your time in front of your computer