A static, single-page web app that renders all 115 HTML tags in a periodic-table-style grid. Click any tag to see its description, attributes, and live examples.
Originally from periodic-table-tags-mu-six.vercel.app. This repo is the cleaned-up, self-contained copy with English file paths and no external runtime dependencies.
.
├── index.html # Entry point (served at /)
├── favicon.svg # Site icon
├── assets/ # Bundled JS / CSS (hashed filenames)
│ ├── app.c10d2998.css
│ ├── app.097b145b.js
│ └── chunk-vendors.33d4e0f8.js
├── README.md
└── .gitignore
No build step. Just open index.html in a browser, or serve the directory:
# Python 3
python3 -m http.server 8080
# then visit http://localhost:8080# Node
npx serve .- The favicon is a tiny inline SVG (
favicon.svg) — no extra request. - All JS/CSS is self-hosted under
assets/. No CDN or third-party calls at runtime. - Browser support: any modern browser. JS is required (a
<noscript>notice is shown otherwise).