this post was submitted on 07 Aug 2026
41 points (84.7% liked)
Technology
87147 readers
3382 users here now
This is a most excellent place for technology news and articles.
Our Rules
- Follow the lemmy.world rules.
- Only tech related news or articles.
- Be excellent to each other!
- Mod approved content bots can post up to 10 articles per day.
- Threads asking for personal tech support may be deleted.
- Politics threads may be removed.
- No memes allowed as posts, OK to post as comments.
- Only approved bots from the list below, this includes using AI responses and summaries. To ask if your bot can be added please contact a mod.
- Check for duplicates before posting, duplicates may be removed
- Accounts 7 days and younger will have their posts automatically removed.
Approved Bots
founded 3 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
not a web dev. If I did want to make some minimal fast loading pages that don't look awful, is there a decent framework out there that will do the styling? A bit of html is fine but learning CSS is just not on my to do list.
If we're talking just text content with not really any interactive elements (beyond a navigation menu), then look into "static site generators".
They allow you to write your blog posts or whatever in Markdown. You can pick out a theme. And then they'll generate HTML+CSS+JS, which you can push onto a web server.
Saying you want to make a web page without learning css is like saying you want to play basketball without shooting hoops. Learn CSS.
Depends on how much do you want to tradeoff on this.
The "easiest" way will always incur in some extra files, or unused shite. When I started, Bootstrap were the only acceptable thing, yesterday were Tailwind, and soon will be "what the AI spits on your face"...
So, a custom styling will always be "best options", but this depends on your level of understanding on the web, and if CSS isn't on your bucket list, leave for the ones that have this on the bucket list.
(Sorry for not having a silver bullet for this)
HTMX is pretty good. It gives you markup that extends HTML for things like async loading, and incorporates some features that you'd otherwise have to do using Javascript or CSS.
My "to go" tool of the day is Alpine.js, fills a similar void, but the focus is on the client side, the botton idea is the same.
Not sure what you mean with loading pages, but maybe you should look into classless CSS for a minimal look. One of my favorites is Water.css when I just want to have something other than the browser default HTML styling, but there are many more.