BopbeeHelp Center

Create my first website

Upload a static website ZIP and get a live HTTPS link.

This is the most common way to publish a simple website on Bopbee.

Correct ZIP structure

my-site.zip

├── index.html

├── css/style.css

└── images/logo.png

Extra folder layer (broken)

my-site.zip

└── my-site/

├── index.html

└── css/style.css

Put index.html at the ZIP root, not inside an extra folder.

Prepare your site

Structure your files

Put your site files in a folder with index.html at the root (not inside a subfolder).

Use relative paths

Link assets with relative paths (for example ./css/style.css, not C:\Users\...).

External JavaScript only

Move JavaScript to separate .js files. Inline scripts in HTML are blocked for security.

Create the ZIP

  • Mac: right-click the folder → Compress.
  • Windows: right-click → Send toCompressed (zipped) folder.

Upload

app.bopbee.com/my-team/portfolio/upload

Upload files

Drop your ZIP or files

index.html at the root for websites

ZIPmy-website.zip
Drop your ZIP on the upload page after creating a project.

Create the project

Open your team dashboard and click New projectUpload.

Drop your ZIP

Bopbee detects code mode automatically because your archive contains HTML.

After upload

app.bopbee.com/my-team/portfolio

Portfolio site

Live

index.html

Code mode detected

portfolio.bopbee.app

When status is Live, your HTTPS link is ready to share.

If images or CSS are missing, see Fix missing images or CSS.

Common mistakes

ProblemFix
ZIP has an extra folder layerPut index.html at the ZIP root, not site/index.html
Broken image pathsMatch paths to the folder structure inside the ZIP
Inline JavaScript blockedLink external .js files instead
Wrong project modeHTML needs a new upload project, not a PDF-only viewer project

On this page