Text Sorter: Favicon & Footer hinzugefügt
This commit is contained in:
parent
e0f53553b1
commit
57adb616b9
@ -3,11 +3,13 @@
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Text Sorter</title>
|
||||
<meta property="og:title" content="Text Sorter">
|
||||
<title>Text Sorter | PonyWave Tools</title>
|
||||
<meta property="og:title" content="Text Sorter | PonyWave Tools">
|
||||
<meta property="og:description" content="Sortiere einen Text alphabetisch">
|
||||
<meta property="og:type" content="website">
|
||||
<meta property="og:url" content="https://tools.ponywave.de/text_sorter">
|
||||
<meta property="og:image" content="https://tools.ponywave.de/favicon.png">
|
||||
<link rel="icon" href="https://tools.ponywave.de/favicon.png">
|
||||
<script defer src="https://stats.ponywave.de/script" data-website-id="9ef713d2-adb9-4906-9df5-708d8a8b9131" data-tag="text_sorter"></script>
|
||||
<style>
|
||||
:root {
|
||||
@ -110,6 +112,35 @@
|
||||
content: '✓';
|
||||
font-size: 1.2em;
|
||||
}
|
||||
|
||||
footer {
|
||||
margin-top: 20px;
|
||||
padding: 10px 0;
|
||||
text-align: center;
|
||||
border-top: 1px solid var(--input-bg);
|
||||
color: var(--text-color);
|
||||
}
|
||||
|
||||
footer a {
|
||||
color: var(--text-color);
|
||||
text-decoration: none;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
footer a:hover {
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
.heart {
|
||||
color: #ff5c8d;
|
||||
animation: heartbeat 1.5s infinite;
|
||||
}
|
||||
|
||||
@keyframes heartbeat {
|
||||
0% { transform: scale(1); }
|
||||
50% { transform: scale(1.2); }
|
||||
100% { transform: scale(1); }
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
@ -194,6 +225,16 @@
|
||||
toast.classList.remove('visible');
|
||||
}, 2000);
|
||||
}
|
||||
|
||||
// Jahr für das Copyright aktualisieren
|
||||
document.getElementById('current-year').textContent = new Date().getFullYear();
|
||||
</script>
|
||||
|
||||
<footer>
|
||||
<p>
|
||||
<a href="https://tools.ponywave.de/">Zurück zur Startseite</a> |
|
||||
© <span id="current-year"></span> Akamaru | Made with <span class="heart">❤️</span> by DeepSeek
|
||||
</p>
|
||||
</footer>
|
||||
</body>
|
||||
</html>
|
Loading…
x
Reference in New Issue
Block a user