61 lines
2.7 KiB
HTML
61 lines
2.7 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<title>xbazzi.com</title>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<link rel="stylesheet" href="assets/style/style.css">
|
|
<script src="assets/scripts/rss.js"></script>
|
|
<script src="assets/scripts/aside.js"></script>
|
|
<script src="assets/scripts/footer.js"></script>
|
|
<script src="https://kit.fontawesome.com/e6a86da546.js" crossorigin="anonymous"></script>
|
|
</head>
|
|
|
|
<body>
|
|
<div id="container">
|
|
<a href="https://www.xbazzi.com"><div class="topbar" ></div></a>
|
|
<div id="flex">
|
|
<main>
|
|
<div class="wrapper">
|
|
<div class="title"><span class="fa-solid fa-user"></span> whoami</div>
|
|
<div class="content">
|
|
<p>
|
|
Software engineer, specializing in algorithms, socket programming, and physics-based models. Passionate about theoretical computer science and low-level programming.
|
|
As you can see, I am not a web developer.
|
|
</p>
|
|
</div>
|
|
<div class="title"><span class="fa-solid fa-lightbulb"></span> projects </div>
|
|
<div class="content" style="display: flex;">
|
|
<div class="project">
|
|
<a href="./homenetwork.html"><img src="assets/img/dc1.JPG" alt="Datacenter preview" class="project-image"></a>
|
|
<a href='./homenetwork.html'><span class="caption">
|
|
We have datacenter at home
|
|
</span></a>
|
|
</div>
|
|
<div class="project">
|
|
<a href="./website.html"><img src="assets/img/website.png" alt="Website preview" class="project-image"></a>
|
|
<a href='./website.html'><span class="caption">
|
|
Overengineered static site (this website)
|
|
</span></a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</main>
|
|
</div>
|
|
|
|
<footer id="footer"></footer>
|
|
</div>
|
|
<style>
|
|
main {
|
|
background-color: transparent !important;
|
|
}
|
|
.content {
|
|
background-color: var(--background);
|
|
}
|
|
.title:first-child {
|
|
margin-top: 0 !important;
|
|
}
|
|
</style>
|
|
|
|
</body></html>
|