mirror of
https://github.com/csd4ni3l/website.git
synced 2026-03-10 09:09:17 +01:00
105 lines
4.0 KiB
HTML
105 lines
4.0 KiB
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
<title>csd4ni3l About</title>
|
|
<link
|
|
href="https://cdn.jsdelivr.net/npm/bootstrap@4.0.0/dist/css/bootstrap.min.css"
|
|
rel="stylesheet"
|
|
/>
|
|
<style>
|
|
@import url("https://fonts.googleapis.com/css2?family=Fredoka:wght@300..700&family=Frijole&family=IM+Fell+DW+Pica+SC&family=Meow+Script&family=Pixelify+Sans:wght@400..700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&family=Special+Elite&family=Swanky+and+Moo+Moo&display=swap");
|
|
|
|
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
box-sizing: border-box;
|
|
outline: none;
|
|
font-family: "Fredoka", sans-serif;
|
|
}
|
|
|
|
body {
|
|
background-color: #111;
|
|
color: white;
|
|
}
|
|
|
|
.row {
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: center;
|
|
align-items: center;
|
|
gap: 10px;
|
|
}
|
|
|
|
.card {
|
|
background-color: #000;
|
|
position: relative;
|
|
width: 12rem;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="alert alert-warning text-center" role="alert">This website is a WIP.</div>
|
|
<div class="container">
|
|
<h2 class="text-center mb-5">My Experience</h2>
|
|
<div class="row">
|
|
<div class="card h-100 mb-5">
|
|
<img
|
|
src="/assets/linux.svg"
|
|
class="card-img-top"
|
|
alt="Linux Icon"
|
|
/>
|
|
<div class="card-body">
|
|
<p class="card-text">
|
|
I have been using Linux for 8 years, and i am currently on
|
|
Arch with Niri and the Noctalia shell (<a href="https://github.com/noctalia-dev/noctalia-shell">Noctalia's Github</a>).
|
|
</p>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="card h-100 mb-5">
|
|
<img
|
|
src="/assets/python.svg"
|
|
class="card-img-top"
|
|
alt="Python Icon"
|
|
/>
|
|
<div class="card-body">
|
|
<p class="card-text">
|
|
Primary language: Python 3.11, mostly because it's stable. I am also familiar a bit
|
|
with HTML, CSS, JS, PHP, but not much. Learning Rust right now.
|
|
</p>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="card h-100 mb-5">
|
|
<img
|
|
src="/assets/proxmox.svg"
|
|
class="card-img-top"
|
|
alt="Proxmox Icon"
|
|
/>
|
|
<div class="card-body">
|
|
<p class="card-text">
|
|
I run Proxmox VE at Home with an OpenWRT firewall
|
|
and multiple LXC containers. (my password manager, websites, etc)
|
|
</p>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="card h-100 mb-5">
|
|
<img
|
|
src="/assets/github.svg"
|
|
class="card-img-top"
|
|
alt="Github Icon"
|
|
/>
|
|
<div class="card-body">
|
|
<p class="card-text">
|
|
I contributed to some open source projects and i also made lots of my own fun projects.
|
|
</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|