Skip to content

Commit

Permalink
copyright is now dynamic>
Browse files Browse the repository at this point in the history
  • Loading branch information
ZoyaYusuf committed Oct 17, 2024
1 parent 449ae40 commit 22f8c32
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -1187,7 +1187,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 @@ -1359,4 +1359,8 @@ <h4 style="font-family: var(--ff-philosopher);color: hsl(203, 30%, 26%);">Follow
<script>
AOS.init();
</script>

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

0 comments on commit 22f8c32

Please sign in to comment.