fast fertig
This commit is contained in:
17
index.html
17
index.html
@ -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>🇩🇪</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>
|
||||
|
Reference in New Issue
Block a user