Código html para agregar Copyright a los sitios y que el año se actualice solo...
Autore: CARLOS AMARAL
Visite 2047,
Followers 2,
Condiviso 0
Es tan facil como agregar esto en un objeto HTML y queda funcionando:
<script language="Javascript">
var mydate=new Date();
var year=mydate.getFullYear();
if (year < 1000) year+=1900;
document.write('<span style="font-family: Verdana, sans-serif; font-size: 10px; color: #c0c0c0;">© '+year+' Copyright Carlos Amaral.com. All rights reserved.</span>')
</script>
Saludos!!!
Postato il
Muy util, muchas gracias