Bookmarker is a simple browser-based bookmark manager. Here's what it does:
Core Functionality
The app lets you save and manage your favorite website links directly in the browser. It has:
Add a Bookmark — a form with two fields: "Site Name" and "Site URL". You fill them in and hit Submit to save a new bookmark.
Bookmarks Table — saved bookmarks appear in a table with four columns: Index, Website Name, a Visit button (opens the site in a new tab), and a Delete button to remove the entry.
Persistent Storage — since there's no backend, it almost certainly uses localStorage to save bookmarks so they survive page refreshes.
Input Validation — likely validates that the URL is properly formatted before allowing it to be saved.
Tech Stack
HTML + Bootstrap for the responsive layout, custom CSS for styling, and vanilla JavaScript handling all the logic — adding entries, rendering the table, visiting links, deleting bookmarks, and reading/writing from localStorage.
In short: it's a front-end only "save my links" tool — like a lightweight personal browser bookmarks manager that lives on a webpage.