index.html, upload it to Dropley, then share the live URL. If the page has local CSS, JavaScript, images, fonts, or data files, upload the complete folder or ZIP instead of the HTML file alone.| Your finished output | Upload it as | Why |
| One self-contained report | A loose index.html file | Its markup, styles, scripts, and data are embedded or loaded from URLs you intend to keep public. |
| A report with local assets or data | A folder or ZIP project | Its relative file paths stay together when Dropley serves the artifact. |
| An app that needs a server, database, private API, or authentication | Do not publish it as-is | Export a static version first, or use a sharing method designed for that access model. |
index.html entry page and automatically uses the shallowest one if an upload contains more than one.index.html with inline CSS and JavaScript. Review the result before sharing it; the link is public to anyone who receives it until it expires.index.html:1234567891011121314151617<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Weekly delivery report</title> <style> body { font-family: system-ui, sans-serif; margin: 3rem; } .metric { font-size: 2rem; font-weight: 700; } </style> </head> <body> <h1>Weekly delivery report</h1> <p class="metric">96% on-time</p> <p>Prepared for the project review.</p> </body> </html>
charts.js, data/summary.json, or images/logo.svg, keep those files in the same folder and use paths that match it:1234567weekly-report/ ├── index.html ├── charts.js ├── data/ │ └── summary.json └── images/ └── logo.svg
index.html, the folder, or the ZIP onto the homepage canvas; you can also click the canvas to choose it from your computer.1234Create a finished static HTML report. Use index.html as the entry page, keep any local assets in relative paths, do not include credentials or private data, and do not require server-side code. Save the completed output so I can upload it to Dropley and share the URL.
index.html is missingindex.html, then include it in the loose-file, folder, or ZIP upload. If the project has several entry pages, place the one you want to share closest to the top of the folder structure.index.html—when it references local files. Check that each path matches the uploaded structure. Relative paths such as images/logo.svg are portable; root-relative asset paths such as /images/logo.svg are also rewritten for supported HTML assets. Do not use paths to files on your computer such as file:///Users/....