12345678my-project.zip ├── index.html ← Entry point (required) ├── styles/ │ └── main.css ├── scripts/ │ └── app.js └── images/ └── logo.png
https://preview.dropley.app/p/{shortId}. By default, Dropley uses index.html.123my-project.zip └── src/ └── index.html
src/index.html.| Extension | Type |
.html | HTML pages |
.css | Stylesheets |
.js | JavaScript |
.json | Data files |
.png | PNG images |
.jpg, .jpeg | JPEG images |
.svg | SVG images |
.gif | GIF images |
.webp | WebP images |
.woff, .woff2 | Web fonts |
1234567<!-- Correct --> <link rel="stylesheet" href="styles/main.css"> <script src="scripts/app.js"></script> <img src="images/logo.png" alt="Logo"> <!-- Incorrect — absolute paths won't resolve locally --> <link rel="stylesheet" href="/styles/main.css">
index.html at root123456789Original ZIP: index.html styles/main.css scripts/app.js Served as: https://preview.dropley.app/p/abc12345/ → index.html https://preview.dropley.app/p/abc12345/styles/main.css https://preview.dropley.app/p/abc12345/scripts/app.js