Bouton clignotant

01/07/2021



Bouton !!!

<html>

<head>

<script>

function blink(ob)

{

if (ob.style.visibility == "visible" )

{

ob.style.visibility = "hidden";

}

else

{

ob.style.visibility = "visible";

}

}

setInterval("blink(bl)",100);

</script>

</head>

<body>

<br><br><br>

<div id="bl"><font size=+2 color=red>Bouton !!!</font></div>

</body>

</html>