Uncategorized

Build a Digital Catalogue for Your C26 Vintage Hair Accessory Storage

When your collection of vintage hair accessories outgrows its current storage system, you begin to wish for a way to see every piece without pulling out every drawer. The C26 series of storage solutions has arrived in British vintage circles, but what many collectors don't yet realise is that a simple HTML document can turn your physical C26 cabinet into a fully searchable digital catalogue. Here's how to build one that respects both the provenance of your pieces and the practical needs of a working collection.

What Is Store C26?

Store C26 refers to a recently introduced modular storage unit designed specifically for fragile and irregularly shaped hair accessories. Unlike earlier systems such as C14 or C23, which focused on hats and brooches, C26 offers narrow compartments sized for combs, slide clips, and decorative bands. The unit's standardised dimensions allow collectors to document each compartment's contents in a digital table. By creating an HTML page that mirrors the physical layout, you gain the ability to search by material, era, or colour without touching a single piece.

Why Build an HTML Catalogue Yourself?

Off-the-shelf inventory apps are often too rigid for vintage hair accessories. A handmade HTML document gives you complete control over fields such as “maker's mark observed”, “condition notes”, and “associated provenance story”. You can also embed small thumbnail images directly into the code, avoiding reliance on third‑party hosting. For a British collector with pieces ranging from Edwardian hair combs to mid‑century Lucite clips, a local HTML file stored on your computer remains private, portable, and completely customisable.

Essential Data Fields for Your C26 Catalogue

  • Compartment ID – e.g. C26‑A1, matching the physical drawer label.
  • Item name – use the most accurate historical term (e.g. “French jet slide” not “black clip”).
  • Circa date – specific decade or year range.
  • Primary material – celluloid, sterling silver, horn, etc.
  • Condition code – adopt a simple scale: Mint / Very Good / Fair / Needs Restoration.
  • Acquisition date and source – helps verify authenticity later.
  • Image filename – link to a local or same‑folder image.

Building the HTML Table Step by Step

Open your preferred text editor and start with a basic HTML skeleton. Use a <table> with a <thead> for column headers and a <tbody> for your data rows. Keep the styling light – a clean monospaced font works best for reference pages. Below is a minimal example of row structure for a C26 compartment:

<tr>
  <td>C26‑B3</td>
  <td>Bakelite crescent comb</td>
  <td>1930s</td>
  <td>Bakelite, metal spring</td>
  <td>Very Good</td>
  <td>March 2025, Portobello Road</td>
</tr>

For images, use a thumbnail column that links to the full image. Resize your photographs to about 150 pixels wide – this keeps the file light while still being identifiable. If your physical C26 unit holds forty compartments, a single HTML table will take only a few minutes to complete and will last indefinitely.

Working Example: Cataloguing a Cactus Lavender Clip

Imagine you have just acquired a premium cactus lavender hair clip – a piece that echoes Victorian botanical motifs but was actually produced in the 1990s. In your C26 catalogue you would note the exact compartment (say C26‑D7), the material (metal with enamel), and the condition. The digital record becomes especially useful when you compare it to other clips from the same era. If you already own a Rose Crown headband, you can cross‑reference the two entries to see which shows earlier enamel wear – that practical insight helps you decide when to restore or retire a piece.

Adding Hyperlinks to Collection Stories

One of the pleasures of a handmade digital catalogue is the ability to link to blog posts or research notes that live on the same machine. For instance, if you have written about the history of zigzag trim on hair accessories, you can place a hyperlink in the “notes” column that opens your local text file. This keeps the entire world of your collection interconnected. You might also link to a favourite article about how to preserve the tortoiseshell finish on a 1920s side comb – the knowledge stays right where you need it.

Preserving Longevity of Your Digital Catalogue

HTML files saved as plain text have no proprietary lock‑in. They open in any browser, on any operating system, now and decades from now. Back up your catalogue file alongside your collection photographs on an external drive. Once a year, export a plain‑text version and store it separately. This two‑copy habit mirrors the care you already give to the hair accessories themselves – the velvet wrapping, the acid‑free tissue, the breathable containers. Your virtual catalogue deserves the same forward‑thinking attention.

Adapting the System for Larger Collections

If your C26 unit is supplemented by additional drawers or free‑standing display cases, you can create separate HTML pages for each system and link them together from a main index page. For example, store‑c26.html can include a navigation bar pointing to store‑c23.html or a page dedicated to your hatpin collection. The beauty of this approach is that you never need to learn a complex database program – just standard HTML tags and a little patience.

Once your catalogue is live on your computer's browser, you will find yourself consulting it before every vintage market visit. A quick glance at the table tells you which colours or eras are underrepresented in your C26 drawers. That awareness turns a casual buy into a considered addition. Over time, the HTML file becomes a diary of your collecting life – each row a small memory of the hunt, the discovery, and the careful handling that brought the piece home.

Final Practical Tip: Use Consistent Photo Filenames

Name each photograph exactly as the compartment ID – C26‑A1.jpg, C26‑B3.jpg – so that your HTML code can reference them without ambiguity. When you add a new item, rename its photo before inserting the row. This simple habit prevents broken image links and keeps the catalogue tidy as your collection evolves.