Notes

thoughts, small builds, and lessons

Hi — thanks for stopping by.

This is a single-file HTML blog: a post list, in-page post anchors, a sidebar, and some nice typography. No build step, no dependencies.

Save as index.html → open locally, or upload to any static host.

Focus writing + making
Style calm, practical
Format simple HTML
Updated whenever there’s something worth sharing

Latest posts

Feb 27, 2026 · 5 min read HTML Basics

A “good enough” blog in plain HTML

Structure first: a clean index, readable posts, and anchor links that just work.

Feb 20, 2026 · 7 min read Writing Notes

A lightweight writing template

Title, summary, bullets, close — the smallest structure that keeps things clear.

Feb 10, 2026 · 3 min read Life Review

A simple weekly reset checklist

Quick reflection prompts that turn “thinking about it” into “doing something.”

A “good enough” blog in plain HTML

Feb 27, 2026·Category: Tech· HTML Basics

You don’t need a framework to publish. For a personal blog, a clear structure gets you 90% of the way there: an index list, readable posts, and links that never break.

Tip: give each post an id like post-1 and link with href="#post-1". It’s fast, reliable, and works offline.

Here’s the smallest post structure:

<article id="post-42">
  <h2>Post title</h2>
  <div class="meta">Date · Category · Tags</div>
  <p>Your content...</p>
</article>

If you ever want “real” post pages, just copy a post into its own file and link to it. Same content, zero rewrites.

Back to posts · top

A lightweight writing template

Feb 20, 2026·Category: Writing· Writing Notes

Title: say what problem this post solves.

Summary: 2–3 sentences: context → approach → outcome.

Bullets: 3–5 points the reader can act on.

Close: the next step (try it, bookmark it, reply with a question).


Quick prompt list:

Back to posts · top

A simple weekly reset checklist

Feb 10, 2026·Category: Life· Life Review

Back to posts · top

About

A short bio goes here. Keep it human: what you’re learning, what you’re building, and why you write.

Suggestion: 2–4 sentences is plenty.

Subscribe

With no backend, the simplest “subscribe” is email. Replace the address below with yours.

Replace [email protected] with your email.