My personal website. It is free and liberated from social media.
1<!doctype html>
2<html lang="en">
3 <head>
4 <meta charset="UTF-8" />
5 <meta name="viewport" content="width=device-width, initial-scale=1.0" />
6 <link rel="stylesheet" href="/style.css" />
7 <title>Demetrius S' Projects</title>
8 </head>
9 <body>
10 <header>
11 <h1>Demetrius S' Projects</h1>
12 <p>
13 My projects are hosted on GitHub. For a VCS, I started with git (using
14 GitHub Desktop 💩). I transitioned to interacting with git solely
15 through the command line. I won't pretend I know how to use git like
16 crazy. I've since been introduced to (and really enjoy) jujutsu
17 (hereafter referred to as "jj").
18 </p>
19 <nav>
20 <a href="/">Home</a>
21 <a href="/projects/" class="titular-navbar-tab">Projects</a>
22 <a href="/blog/">Blog</a>
23 </nav>
24 </header>
25 <main>
26 <section class="projects">
27 <section>
28 <a href="https://github.com/DemetriusSemanko/Blackjack">
29 <h2>Blackjack Game</h2>
30 </a>
31 <p>
32 Creating classes to represent individual cards, decks, and players,
33 I used Java to create the game of Blackjack. The user plays through
34 only a terminal. No other players may participate, and a dealer
35 automatically plays based on conventional casino rules. I want to
36 recreate this attempt with both text- and GUI-based interaction.
37 </p>
38 </section>
39 </section>
40 </main>
41 <footer><section>© 2026 Demetrius</section></footer>
42 </body>
43</html>