Added email contact on home, better view.

This commit is contained in:
2025-07-28 18:51:13 +02:00
parent c589c31abd
commit c477222fd1
4 changed files with 23 additions and 2 deletions

View File

@@ -51,4 +51,16 @@ function updateTimer() {
function chisiamoInizializza() {
updateTimer();
setInterval(updateTimer, 1000);
}
function mostraemail() {
document.getElementById("email").innerHTML = "";
const p1 = "info";
const p2 = ".";
const p3 = "ertpl";
const p4 = "@";
const p5 = "gmail";
const p6 = ".";
const p7 = "com";
document.getElementById("email").innerHTML = p1+p2+p3+p4+p5+p6+p7;
}