Add basic stuff

This commit is contained in:
Norbi Peti 2024-04-05 00:44:06 +02:00
parent 6c762bee05
commit 6574d16efc
2 changed files with 38 additions and 0 deletions

24
index.css Normal file
View file

@ -0,0 +1,24 @@
body {
background: #000;
color: #fff;
text-align: center;
padding: 2rem;
}
ul {
list-style: none;
padding: 0;
}
li {
padding: 10px;
}
a {
color: #aaa;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}

View file

@ -6,8 +6,22 @@
<meta name="keywords" content="programming, mental health, social">
<meta name="author" content="NorbiPeti">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="index.css">
</head>
<body>
<h1>Hi</h1>
<p>I'm a programmer from Hungary. My aim is to self-host all of my socials.</p>
<h2>Socials</h2>
<ul>
<li><a href="https://toot.norbipeti.eu/@norbipeti">Mastodon</a></li>
<li><a href="https://vid.norbipeti.eu/a/norbipeti">PeerTube</a></li>
</ul>
<h2>Stuff I've made</h2>
<ul>
<li><a href="https://github.com/NorbiPeti/VirtualComputer">A computer in Minecraft (using VirtualBox)</a></li>
<li><a href="https://github.com/TBMCPlugins">User management, chat Markdown formatting and Discord integration
Spigot plugins for a group Chroma Gaming</a></li>
<li>A looot of smaller projects I might add someday</li>
</ul>
</body>
</html>