Feed

HTML

Stay updated with HTML standards, semantic markup, and web accessibility. Our digest aggregates CSS integration, HTML5 features, and DOM manipulation discussions from developer communities.

Articles from the last 30 days

Web Components: The Framework-Free Renaissance
01Tuesday, February 17, 2026

Web Components: The Framework-Free Renaissance

Modern browsers now natively support defining custom elements, shadow DOM, and event systems, allowing developers to build reactive interfaces without frameworks like React. Using these web standards ensures long-term stability and backward compatibility. AI assistants further simplify learning these patterns and help implement encapsulated, modular UI components efficiently.

Sources:Hacker News174 pts
Show HN: I saw this cool navigation reveal, so I made a simple HTML+CSS version
02Saturday, February 7, 2026

Show HN: I saw this cool navigation reveal, so I made a simple HTML+CSS version

This technical exploration demonstrates a creative method for implementing an interactive menu using only HTML and CSS, eliminating the need for JavaScript. The technique centers on the use of two distinct clip-path properties to manage visual transitions. The first creates a circular reveal effect, expanding from the top-left to the bottom-right of the screen. By utilizing a specific calculation involving vmax and a multiplier of 1.42—representing the square root of 2—the developer ensures the circle covers the entire viewport regardless of aspect ratio. The second clip-path utilizes a polygon shape to simulate a light ray effect. While currently hardcoded, this approach offers a lightweight, high-performance alternative for web animations and UI design.

Sources:Hacker News121 pts
CSS Clicker
03Thursday, February 12, 2026

CSS Clicker

CSS Clicker is an innovative idle game built entirely using HTML and CSS, functioning without any JavaScript or server-side code. Developed as a technical challenge inspired by the Cohost community, it allows players to build and upgrade websites. The project demonstrates the power of CSS media queries and state management without traditional scripting.

Sources:Lobsters54 pts
Modern CSS Code Snippets
04Monday, February 16, 2026

Modern CSS Code Snippets

The content provides a curated collection of modern CSS techniques that serve as native replacements for legacy hacks. It focuses on simplifying web development by offering weekly side-by-side comparisons, helping developers transition from outdated workarounds to clean, modern standards for common styling challenges.

Sources:Lobsters53 pts
You can use newline characters in URLs
05Saturday, February 28, 2026

You can use newline characters in URLs

Daniel Lemire explores the flexibility of the WHATWG URL specification regarding whitespace. Browsers ignore ASCII tabs and newlines in standard URLs, though they trigger validation errors. Data URLs, including Base64-encoded images and SVG, offer even greater freedom, allowing various whitespace characters for improved readability without breaking functionality in modern web browsers.

Sources:Lobsters25 pts