Skip to content

Commit

Permalink
Changed footer copyright year to dynamic
Browse files Browse the repository at this point in the history
  • Loading branch information
Neerajkr-jha committed Jan 7, 2025
1 parent b8598dd commit 4b4144f
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions Html-files/contact.html
Original file line number Diff line number Diff line change
Expand Up @@ -873,7 +873,7 @@ <h4 style="font-family: var(--ff-philosopher);color: hsl(203, 30%, 26%);">Follow
</p>
<div class="copyright" style="font-family: var(--ff-philosopher);background-color: hsl(20, 43%, 93%);color: black;">

&copy; 2024 Retro . All Rights Reserved. | Developed by <span id="author">
&copy; <span id="copyright"></span> Retro . All Rights Reserved. | Developed by <span id="author">
<a href="https://www.linkedin.com" target="_blank" style="text-decoration: none;">Retro Team</a>
</div>
<div>
Expand Down Expand Up @@ -1033,7 +1033,9 @@ <h4 style="font-family: var(--ff-philosopher);color: hsl(203, 30%, 26%);">Follow

<script src="cart.js"></script>


<script>
document.getElementById("copyright").textContent = new Date().getFullYear();
</script>



Expand Down

0 comments on commit 4b4144f

Please sign in to comment.