“actualización automática de derechos de autor html” Código de respuesta

actualización automática de derechos de autor html

<div class="copyright">
  <footer>Copyright © <span id="year"></span> , All rights reserved to X</footer>
</div>
<script>
  
  function getCurrentYear() {
    return new Date().getFullYear(); // returns the year via local timing
  };

  document.getElementById("year").innerHTML = getCurrentYear(); 
  //changing the inner html of the span with "year" id to the given year(2021)
</script>
ixWatan_

Automático Get Year for Copyright HTML

<script type="text/JavaScript"> var theDate=new Date() document.write(theDate.getFullYear()) </script>
Brave Bat

Automático Get Year for Copyright HTML

©<? echo date(Y);?>
Brave Bat

Respuestas similares a “actualización automática de derechos de autor html”

Preguntas similares a “actualización automática de derechos de autor html”

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código