1
0

fast fertig

This commit is contained in:
matt
2025-02-02 20:01:59 +01:00
parent 8a18effa31
commit b65fc2be24
8 changed files with 863 additions and 2 deletions

View File

@ -73,6 +73,7 @@
color: white;
font-size: 1.5em; /* Textgröße anpassen */
}
</style>
</head>
<body>
@ -91,7 +92,7 @@
Creative Crafter</h1>
<h3>Hey there! I'm Creative Crafter, your go-to gamer. On this website, I showcase my latest and greatest games.<br/>
Note: All games are available in German <span>&#x1F1E9;&#x1F1EA;</span> only. Enjoy the adventure!</h3>
<h2><img src="/icons/spiele.png" height="25vh">Programming</h2>
<h2><img src="/icons/spiele.png" height="25vh">Categories</h2>
<!-- Button hinzufügen -->
<button class="button" onclick="window.location.href='/programmieren/spiele/'">
@ -100,6 +101,13 @@
</div>
</button>
<button class="button" onclick="window.location.href='/link-collection'">
<div class="button-inner">
<span class="button-text">Link Collection</span>
</div>
</button>
<footer><a href="mailto:info@creative-crafter.de">info@creative-crafter.de</a> | <i id="footer-text"></i></footer>
<script>
// Ladeanimation beim Laden der Seite anzeigen
document.body.classList.add('loading');
@ -108,6 +116,13 @@
window.addEventListener('load', () => {
document.body.classList.remove('loading');
});
function currentYear() {
var currentYear = new Date().getFullYear();
document.getElementById('footer-text').innerHTML = "2023-" + currentYear;
}
// Ruf die Funktion auf, um den Footer zu aktualisieren
window.addEventListener('load', currentYear);
</script>
</body>
</html>