https://desarrolloweb.com/articulos/mostrar-fecha-actual-javascript.html
<script>
var f = new Date();
document.write(f.getDate() + "/" + (f.getMonth() +1) + "/" + f.getFullYear());
</script>
https://desarrolloweb.com/articulos/mostrar-fecha-actual-javascript.html
<script>
var f = new Date();
document.write(f.getDate() + "/" + (f.getMonth() +1) + "/" + f.getFullYear());
</script>