diff options
| author | Polesznyák Márk <contact@pml68.dev> | 2025-09-25 01:39:56 +0200 |
|---|---|---|
| committer | Polesznyák Márk <contact@pml68.dev> | 2025-09-25 01:39:56 +0200 |
| commit | c0af3a63d6cd7b893ca23aeb442e776955bc2c91 (patch) | |
| tree | 0fec30f2bc12503e6095271dd32159322355c5c6 /projects/index.html | |
| parent | fix: incorrect social link hover color transition (diff) | |
| download | pml68.dev-c0af3a63d6cd7b893ca23aeb442e776955bc2c91.tar.gz | |
feat: "rewrite" in pure HTML/CSS
Diffstat (limited to '')
| -rw-r--r-- | projects/index.html | 61 |
1 files changed, 61 insertions, 0 deletions
diff --git a/projects/index.html b/projects/index.html new file mode 100644 index 0000000..3b82f73 --- /dev/null +++ b/projects/index.html @@ -0,0 +1,61 @@ +<!DOCTYPE html> +<html lang="en"> + <head> + <meta charset="UTF-8"> + <meta name="viewport" content="width=device-width, initial-scale=1.0"> + <link rel="icon" href="/assets/pml68.png"> + <link rel="stylesheet" href="/style.css"> + <title>Projects</title> + </head> + + <body> + <img src="/assets/wave1.svg" alt="Wave decoration" class="wave wave1"> + <img src="/assets/wave2.svg" alt="Wave decoration" class="wave wave2"> + + <div class="container"> + <div class="spacer"> + <div class="home"> + Take me back <a href="/"><b>home</b></a> + </div> + </div> + <div class="project-container"> + <a href="https://sr.ht/~pml68/pml68.dev" target="_blank"> + <div class="project"> + <img src="/assets/pml68.png" alt="pml68.dev icon" class="project-icon"> + <div class="content"> + <h3>pml68.dev</h3> + <p>My personal website—the one you're currently viewing</p> + </div> + </div> + </a> + <a href="https://sr.ht/~pml68/iced-builder" target="_blank"> + <div class="project"> + <img src="https://iced.rs/logo.svg" alt="iced logo" class="project-icon"> + <div class="content"> + <h3>iced Builder</h3> + <p>UI builder for iced, built with iced. (WIP)</p> + </div> + </div> + </a> + <a href="https://github.com/foghorn-rs/foghorn" target="_blank"> + <div class="project"> + <img src="https://avatars.githubusercontent.com/u/209838582?s=200&v=4" alt="Foghorn icon" class="project-icon"> + <div class="content"> + <h3>Foghorn</h3> + <p>Signal Messenger client written in Rust and Iced</p> + </div> + </div> + </a> + <a href="https://sr.ht/~pml68/iced_dialog" target="_blank"> + <div class="project"> + <img src="https://iced.rs/logo.svg" alt="iced logo" class="project-icon"> + <div class="content"> + <h3>iced_dialog</h3> + <p>Custom dialog for iced</p> + </div> + </div> + </a> + </div> + </div> + </body> +</html> |
