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

44
tools/index.php Normal file
View File

@@ -0,0 +1,44 @@
<?php include "../html-head.php"; ?>
<link rel="stylesheet" href="https://static.eliasfink.de/fonts/montserrat/montserrat.css">
<style>
body {
margin: 0;
background-color: var(--blue-1);
}
h1 {
top: 50%;
left: 50%;
margin: 0;
color: #FFFFFF;
font-size: 48px;
font-weight: 300;
position: absolute;
transform: translate(-50%, -50%);
font-family: "Montserrat", sans-serif;
}
span {
color: var(--blue-3);
}
@media (max-width: 767px) {
h1 {
font-size: 32px;
}
}
</style>
<title>Tools &ndash; eliasfink.de</title>
</head>
<body>
<h1><span>tools</span>.eliasfink.de</h1>
</body>
</html>