mirror of
https://github.com/its-michaelroy/Simple_Portfolio.git
synced 2026-06-03 23:00:43 +00:00
6 lines
184 B
JavaScript
6 lines
184 B
JavaScript
// js/year.js
|
|
document.addEventListener("DOMContentLoaded", function () {
|
|
document.getElementById("year").innerHTML =
|
|
"© " + new Date().getFullYear() + " Michael Roy.";
|
|
});
|