Added tools

This commit is contained in:
2025-06-25 17:48:30 +02:00
parent 9ec73e7e86
commit db02992ee9
5 changed files with 276 additions and 0 deletions

29
tools/discord-widget.php Normal file
View File

@@ -0,0 +1,29 @@
<?php include "../html-head.php"; ?>
<style>
* {
margin: 0;
padding: 0;
}
body {
margin: 0;
overflow: hidden;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
}
iframe {
width: 100vw;
height: 100vh;
}
</style>
<title>Discord Widget &ndash; Tools &ndash; Elias Fink</title>
</head>
<body>
<iframe src="https://discord.com/widget?id=788054095800827944&theme=dark" frameborder="0" sandbox="allow-popups allow-popups-to-escape-sandbox allow-same-origin allow-scripts"></iframe>
</body>
</html>