On this page
Publish a MiniUp Site
Publish a MiniUp Site from the Publish page by pasting HTML or uploading an HTML file, folder, or ZIP. MiniUp gives the Site a URL you can open and share.
Prepare your Site
Sign in first if you want to manage the Site from Dashboard. Prepare a no-build static project with a main index.html. Check the upload limits shown on Publish; folder file counts and per-file limits apply even when files arrive in a ZIP.
Publish HTML or a project
- Open Publish.
- Choose the HTML input, HTML file upload, folder upload, or ZIP upload for your content.
- For pasted HTML, supply a complete document. For a folder or ZIP, include the main page and all local assets with their relative paths.
- Enter the Site name and resolve any availability or naming error. Names are 3–64 characters using letters, numbers, hyphens, or underscores; reserved names cannot be used.
- Review the preview and access choice, then publish. Wait for the successful result before leaving.
- Open the returned URL. Test images, navigation, forms, and data loading on the published Site.
Copy a minimal HTML page
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>My first MiniUp Site</title>
<style>
body { font: 18px/1.6 system-ui; max-width: 48rem; margin: auto; padding: 24px; }
a { color: #174db1; }
</style>
</head>
<body>
<main><h1>Hello from MiniUp</h1><p>My first published page.</p></main>
</body>
</html>Understand the Site URL and index.html
A Site URL typically looks like https://my-site.miniup.app. Copy the actual URL shown by MiniUp, especially when using a custom domain. The root opens the Site’s main page. Put index.html at the project root and keep links relative so the folder structure works after upload. Do not assume a source project folder is its publishable output.
Fix common publishing problems
- Name unavailable: choose another name; do not repeatedly submit a reserved name.
- Blank page: inspect the main HTML file and browser errors; remove dependencies on a local development server.
- Missing styles or images: check relative paths and include the referenced files in the folder or ZIP.
- Upload rejected: check format, file count, and size limits. Remove unrelated project files before retrying.