initial move

This commit is contained in:
Fl1tzi 2023-04-10 02:24:27 +02:00
parent 9f8e064cf5
commit 8c6af69a02
4 changed files with 73 additions and 1 deletions

8
DATENSCHUTZ.txt Normal file
View file

@ -0,0 +1,8 @@
Kontakt
-------
git@tgerber.net
Daten beim Aufruf der Website
-----------------------------
Beim Aufruf dieser Website werden keine Daten von Ihnen gespeichert.

View file

@ -1,6 +1,6 @@
MIT License
Copyright (c) <year> <copyright holders>
Fl1tzi<git@tgerber.net>
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

26
index.css Normal file
View file

@ -0,0 +1,26 @@
/* TEXT STUFF */
body {
font-family: Arial;
margin-left: 20px;
margin-right: 20px;
}
span {}
span.subtitle {
font-size: 12px;
}
p{}
p.narrow {
margin-bottom: 5px;
margin-top: 5px;
}
/* COLORS */
.grey {
color: grey;
}

38
index.html Normal file
View file

@ -0,0 +1,38 @@
<html>
<head>
<title>fl1tzi.com</title>
<link rel="stylesheet" href="index.css">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="author" content="Fl1tzi<git@tgerber.net>">
</head>
<body>
<h1 style="display: inline-block;">Fl1tzi</h1>
<span class="subtitle grey">.com</span>
<hr/>
<h2>Who am I?</h2>
<p>I'm a student in Germany, who is currently enjoying working on open-source software and playing with tech.</p>
<h2>Socials</h2>
<ul>
<li><a href="mailto:git@tgerber.net">E-Mail</a></li>
<li><a href="https://codeberg.org/fl1tzi">Codeberg</a></li>
<li><a href="https://github.com/fl1tzi">GitHub</a></li>
<li><a href="https://matrix.to/#/@fl1tzi:matrix.fl1tzi.com">Matrix</a></li>
</ul>
<hr/>
<footer>
<p class="narrow">LICENSE: <a href="LICENSE.txt">MIT</a></p>
<p class="narrow"><a href="DATENSCHUTZ.txt">Datenschutzerklärung</a></p>
<p class="grey" style="font-size: 12px">Thank you for visiting!</p>
</footer>
</body>
</html>