personal-website/index.html

62 lines
3.3 KiB
HTML
Raw Permalink Normal View History

2022-12-17 16:45:18 +00:00
<!DOCTYPE html>
<html lang="en">
<head>
2024-01-02 00:34:36 +00:00
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" >
2022-12-17 16:45:18 +00:00
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>HackerNCoders website</title>
<link rel="stylesheet" href="/static/css/main.css">
</head>
<body>
<div class="layout">
<header>
<div class="big-text-header">
<h1 class="big-text-header__text">HackerNCoders website</h1>
</div>
</header>
<div class="layout__columns">
<div class="layout__left-col">
<nav class="left-nav">
<ul class="left-nav__categories">
<li class="left-nav__category">
<div class="category-label">Me</div>
<ul class="left-nav__list">
<li class="left-nav__li">
<div class="left-nav__block">
<a class="left-nav__list-link" href="/">home</a>
</div>
</li>
<li class="left-nav__li">
<div class="left-nav__block">
2024-01-02 00:44:50 +00:00
<a class="left-nav__list-link" href="/contact.html">contact</a>
2022-12-17 16:45:18 +00:00
</div>
</li>
</ul>
</li>
<li class="left-nav__category">
<div class="category-label">Stuff</div>
<ul class="left-nav__list">
<li class="left-nav__li">
<div class="left-nav__block">
2024-03-04 21:12:01 +00:00
<a class="left-nav__list-link" href="/projects.html">Projects</a>
2022-12-17 16:45:18 +00:00
</div>
</li>
</ul>
</li>
</ul>
</nav>
</div>
<main>
2024-01-02 00:34:36 +00:00
<section>
<h1 class="page-title">Welcome to my website</h1>
2024-03-04 21:12:01 +00:00
<p>Hi, I'm hackerncoder. I rewrote my website on new year 2024. I used to run writefreely, but I decided to make a fully static html+css-only website.</p>
<p>Actually, my mastodon bio is more correct, I "stole" this website (some time ago... It's been a year since I asked if I could use this design). <a href="https://cadence.moe">cadence</a> (go check her website out!) actually made this, and hers is the better of our two, since design and colours isn't really my strong point</p>
2024-01-02 00:34:36 +00:00
</section>
2022-12-17 16:45:18 +00:00
</main>
</div>
<footer>
<a href="https://cadence.moe" target="_blank"><img src="/static/img/cadence_now.png" alt="The text &quot;cadence now!&quot; on a purple background. There is a moon-shaped logo on the left side and a tiny star in the bottom right." width="88" height="31"></a>
</footer>
</div>
</body>
</html>