Version 1.0.0

Vertexly Documentation

Thank you for choosing Vertexly — a responsive multi-page HTML, CSS and JavaScript template for 3D asset marketplaces and digital creator platforms.

HTML5CSS3Vanilla JavaScriptResponsiveNo framework
01 · Structure

File organization

Keep the relative folder structure intact when moving the project to a server.

vertexly/ ├── index.html ├── marketplace.html ├── product.html ├── creator.html ├── collections.html ├── sell.html ├── assets/ │ ├── css/style.css │ ├── js/script.js │ └── img/*.jpg ├── documentation/index.html ├── credits.txt ├── fonts.txt ├── icons.txt └── README.txt
02 · Pages

Included layouts

FilePurpose
index.htmlMarketplace home with categories, trending assets, collection, creator and seller CTA.
marketplace.htmlSearchable catalog, category chips, filters, sorting and mobile filter drawer.
product.htmlFull product detail with gallery, license selector, technical data, tabs and reviews.
creator.htmlCreator banner, profile data, filtered products, collections and social links.
collections.htmlEditorial collection browsing and category filtering.
sell.htmlCreator acquisition page with benefits, workflow, statistics and FAQ.
03 · Setup

Getting started

  1. Extract the ZIP archive.
  2. Open index.html in a modern browser.
  3. For deployment, upload the complete vertexly folder to your web host.
  4. No build process or package manager is required.

For local development, a lightweight local server is recommended. For example, use the Live Server extension in VS Code.

04 · Design

Customize the template

Colors

Edit the CSS custom properties at the top of assets/css/style.css.

:root { --bg: #0e1013; --surface: #171a20; --text: #f5f7fa; --muted: #9da5b2; --accent: #b8ff5a; }

Typography

Vertexly uses Space Grotesk for headings and Inter for interface/body copy. Replace the Google Fonts import and the related font-family values to use another pairing.

Product cards

Duplicate any .product-card element. On the marketplace page, keep its data-* values accurate so filtering and sorting continue to work.

05 · Behavior

JavaScript components

All interactions are contained in assets/js/script.js and use data attributes instead of page-specific inline scripts.

Mobile navigationdata-menu-toggle / data-main-nav
Search modaldata-search-open / data-search-close
Wishlistdata-wishlist
Product gallerydata-gallery-main / data-gallery-thumb
Marketplace filtersdata-filter / data-category-chip
Sortingdata-sort and product data values
Tabsdata-tab / data-tab-panel
Accordiondata-accordion-button
Toast feedbackdata-toast
06 · Media

Replacing images

All product imagery is stored locally in assets/img as optimized JPG files. Replace an image with another file of the same name, or update its src attribute in the relevant HTML page.

For the best result, use wide 4:3 renders for product cards, portrait/full-body images for characters and panoramic images for creator banners.

07 · Credits

Third-party resources

Font Awesome is loaded through cdnjs. Google Fonts supplies Inter and Space Grotesk. Full URLs are listed in icons.txt and fonts.txt.

The included fictional 3D renders were generated specifically for this template. See credits.txt for details.

08 · Notes

Before publishing

Forms and checkout actions are front-end demonstrations. Connect them to your preferred backend, payment provider or marketplace API before production use. Replace fictional product data, creator names, legal links and license text with your own content.

Open template