Create a C13 HTML Catalogue for Your Vintage Collection
That drawer labelled C13—it holds your best velvet ribbons, tortoiseshell combs, and a stack of silk scarves that somehow always shift around. Without a record, you're left rifling through layers, hoping to spot that one 1920s barrette. The C13 system groups pieces by era or acquisition batch, but it becomes a black hole fast. An HTML inventory file, saved locally on your computer or tablet, gives you a lightweight, offline map of the drawer—respecting the tactile feel of vintage curation while keeping the story of each piece at your fingertips.
Think of your C13 HTML document not as a database, but as a digital companion to the physical drawer. You can open it in any browser, edit it with a simple text editor, and share it with a fellow collector who inherits your system. No subscription fees, no cloud dependency, no clutter.
What Belongs in a C13 HTML Catalogue?
The beauty of a handmade HTML file is that you decide the fields. For a C13 clothing and accessories drawer, I recommend starting with these columns in a simple table:
- Item Name – e.g. “Tortoiseshell side comb with floral engraving”
- Category – Garment, Hair Accessory, Hat, Scarf, etc.
- Material – Celluloid, silk, velvet, brass, glass
- Era – 1920s, 1950s, 1970s
- Condition Notes – e.g. “prong slightly loose”, “small silk tear near seam”
- Image Link – a local file path or inline base64 thumbnail
- Date Acquired – to track provenance and rotation
- Cross-Reference – link to a related blog post or a sister drawer like Ribbon Revival: The Story of Ric Rac in British Hair Accessories if you own that trim
This structure keeps the information dense but readable. You can style it with a few lines of CSS to make the table responsive and pleasant to scroll through on a phone while you are standing at your C13 drawer.
Why HTML Instead of Spreadsheets or Apps?
Spreadsheets are excellent for analysis but impersonal; a dedicated app often demands an account or forces a specific taxonomy. A plain HTML file lives entirely on your device. You can embed small photographs directly in the page (using base64 encoding, or simply reference a local folder of images) without relying on any service. For a collector who values privacy and permanence, that independence matters.
Plus, HTML lets you weave in narrative. You can add a <p> before the table describing the provenance of the C13 label itself—perhaps it originally denoted a department at a now-lost London department store, or it was your grandmother's shorthand for “best pieces”. That story turns a dry list into a living archive.
Building Your First C13 HTML Page
You do not need to be a web developer. A single .html file with a <table> and a few <style> tags is enough. Start with this skeleton:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>C13 Collection</title>
<style>
body { font-family: Georgia, serif; background: #fdf8f0; padding: 2rem; }
table { width: 100%; border-collapse: collapse; }
th, td { border: 1px solid #d6cbbf; padding: 0.75rem; text-align: left; }
th { background: #e9ddd3; }
img { max-width: 120px; height: auto; }
</style>
</head>
<body>
<h1>C13 Drawer Inventory</h1>
... (your rows) ...
</body>
</html>
Then fill in each row. Keep the image file names consistent, like c13_comb_front.jpg. If you later decide to embed images as inline base64, an online converter can turn any small JPG into a string you paste directly into the src attribute. That makes the file truly portable.
Linking Your Catalogue to the Blog
Your HTML inventory can also serve as a research tool. For example, if you own a zigzag-trimmed barrette from the 1940s, you can add a note that the trim is discussed in The Ric Rac 5: A Collector’s Guide to Vintage Hair Accessories with Zigzag Trim. That cross-reference saves you from re-reading the entire blog when you need to check original manufacturers. Similarly, the The Quiet Craft of Nieve Pink Hair Accessories entry might help you date a pale pink celluloid clip in your C13 drawer.
Maintaining the Record Over Time
A C13 HTML catalogue is only as good as its updates. After each acquisition or reorganisation, open the file and adjust the table. Use comments in the HTML (like <!-- moved to C14 on 12 March 2025 -->) to track transfers between drawers. If you loan pieces to a friend for a vintage styling session, add a temporary status column. The file will grow with your collection, but because it is plain text, it will never become obsolete.
For delicate items like silk hair ribbons or celluloid combs, add care notes—'wrap in acid-free tissue' or 'avoid prolonged UV exposure.' This article isn't about medical or cosmetic advice; these are practical storage tips that protect the pieces and extend their life.
One final practical tip: keep a printed version of the HTML table in a clear sleeve inside the C13 drawer. When the battery dies on your device, the paper version still tells you that the aquamarine clip you are hunting for is actually in the second compartment under the velvet purse. That kind of redundancy is the mark of a seasoned collector.
