Provided that you have some web server space available somewhere (maybe included with your internet access package anyway?), I can recommend
Hugo, a static website generator.
I chose it since I did not want to depend on some hosted build-your-homepage toolkit (like wix.com), and neither did I want the responsibility of hosting some active content management system (like Wordpress) myself, with constant security patches etc.
Hugo is a tool which runs locally (offline) on your computer. The input you provide is a folder hierarchy with Markdown files (easily written in any text editor, and nicely human-readable), plus whichever files and pictures you want to include. The page layout is defined by a set of Hugo templates and a CSS file, jointly called a "theme". A large
library of sample themes is available, but you can also adapt these to taste or craft your own.
The process is not exactly drag & drop, but straightforward: Make your updates to the input files (via your favorite text editor), run Hugo to generate an output folder structure (static HTML files plus images etc.). Look at a local preview via Hugo's built-in local web server, edit and repeat if needed -- once you are happy with the changes, upload the output folder structure to your external web server.
For my own website,
www.e-basteln.de, I did not want a blog-style structure, but preferred a hierarchy of topics. But many themes specifically suited for blogs or journals are also available on the Hugo site.
I hope this will be a future-proof solution, since the content format, i.e. the Markdown language and folder structure, is not proprietary. It is also "fire and forget": During periods where you do not want to post new content, you don't have to worry about new security issues and attacks. I have used Hugo for the past four years and am happy with it.
EDIT: If you are not particular about the layout and just want to archive and publish your projects, github might be an alternative. You are relying on Microsoft's service there, but become part of a very widely known repository -- and you get version management for free.