diff options
| author | uint <abhinav.prsai@gmail.com> | 2025-12-03 19:59:18 +0000 |
|---|---|---|
| committer | uint <abhinav.prsai@gmail.com> | 2025-12-03 19:59:27 +0000 |
| commit | e2221254889351c32b5f4f8608c95b17f0213c48 (patch) | |
| tree | 9eb79120ee03c4761e8a530d13fb7d66901445f2 /index.html | |
initial commit
Diffstat (limited to 'index.html')
| -rw-r--r-- | index.html | 63 |
1 files changed, 63 insertions, 0 deletions
diff --git a/index.html b/index.html new file mode 100644 index 0000000..f7b7dec --- /dev/null +++ b/index.html @@ -0,0 +1,63 @@ +<!DOCTYPE html> +<html> + <head> + <meta charset="UTF-8"> + <title>mallocd.com</title> + + <link rel="stylesheet" href="style.css" type="text/css"> + + <link rel="preconnect" href="https://fonts.googleapis.com"> + <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin> + <link href="https://fonts.googleapis.com/css2?family=Libertinus+Serif:ital,wght@0,400;0,600;0,700;1,400;1,600;1,700&display=swap" rel="stylesheet"> + </head> + + <body> + + <header> + <h1><a href="index.html" class="h_mallocd">: mallocd :</a></h1> + </header> + + <nav id="side-bar"> + <div> + <p class="side-title">pages:</p> + <ul> + <li><a href="about.html">> about</a></li> + <li><a href="projects.html">> projects</a></li> + <li><a href="docs/sxwm-dev.html">> docs</a></li> + <li><a href="contact.html">> contact</a></li> + </ul> + + <p class="side-title">projects:</p> + <ul> + <li><a href="/projects/asimotive3d/">> asimotive3d/</a></li> + <li><a href="/projects/sxwm/">> sxwm/</a></li> + <li><a href="/projects/sxbar/">> sxbar/</a></li> + <li><a href="/projects/xpet/">> xpet/</a></li> + </ul> + </div> + </nav> + + <article> + + <img src="9birb.png" class="birb9"> + + <p> + Hi, I'm <a>uint</a> and I build many things in C. This website documents my projects, and other stuff + </p> + + <h3>featured:</h3> + <ul> + <li><a href="/projects/asimotive3d/">Asimotive 3D</a> - vulkan based 3d engine.</li> + <li><a href="/projects/sxwm/">sxwm</a> - minimal X11 tiling window manager.</li> + <li><a href="/projects/sxbar/">sxbar</a> - simple status bar for X11.</li> + <li><a href="/projects/xpet/">xpet</a> - tiny animated desktop pet.</li> + </ul> + + </article> + + <footer> + <p>(c) 2025 uint</p> + </footer> + + </body> +</html> |
