CSV to Bookmarks HTML
BetaTurn a spreadsheet of links into a bookmarks.html file that Chrome, Firefox, Edge and Safari import. Folder paths become real folders. Nothing is uploaded.
- Free, no sign-up
- REST + MCP
- Updated
- Reviewed by Olgun Ozoktas
Every link is placed under this folder, so an import does not scatter links across the bookmarks bar. Clear it to place them at the top level.
The importable bookmarks file will appear here..
Why Use Our CSV to Bookmarks Converter?
The Netscape bookmark file format is what every browser has imported since the 1990s and what every browser still exports today. It is a nested definition list: a folder is a heading followed by its own list, and a bookmark is an anchor with an optional ADD_DATE attribute. Browsers are strict about the preamble and forgiving about the rest, so this writer emits the full doctype, the generated-file comment, the charset declaration and the heading exactly as a browser does.
The input side matches columns by name, so a sheet exported from a bookmark manager usually needs no configuration: url, href, link and address all mean the address; title, name and label all mean the title; folder, folder_path and path all mean the folder. When no address column can be found, a column map appears so you can point each field at the right column, and that mapping is the same code the API uses.
Two details decide whether the round trip works. Titles and addresses are HTML-escaped, so an ampersand in a query string survives being read back. And the folder separator prefers slash-space when the value contains it, because a folder called AI/ML is common enough that splitting every slash would quietly invent folders. Everything runs in the browser; the sheet is never uploaded.
How it compares
Browsers import bookmarks.html and nothing else, so a cleaned spreadsheet is stuck until something writes that format. Writing it by hand means getting a 1990s doctype and a nested list exactly right. Online builders take the upload, and a link list is a record of what you read. This page writes the format browsers actually accept, rebuilds the folder tree, and keeps the sheet in the tab.
Bookmark Import Tips
- The folder path builds real nested folders. Write Work / Clients for a folder inside a folder. When a value has no slash-space it is split on a bare slash instead, so a single folder genuinely called AI/ML survives rather than becoming two.
- Only the address is required. A row with no title uses its address as the title, which is what a browser shows anyway for an untitled bookmark.
- A bare domain such as example.com gains https:// so the browser treats it as a link. Anything with a scheme is kept exactly as written, including bookmarklets and file:// links.
- Rows sharing a folder path are merged under one heading, so a hundred rows in the same folder produce one folder, not a hundred.
- A row with no usable address is skipped and named by its row number under the output, counting the header as row 1. Fix the cell and paste again; every other row is still in the file.
- Importing a file into a browser that already holds the same links creates duplicates. Export afterwards and run Dedupe Bookmarks to clean them up.