Deployment & Export
Exporting HTML, downloading ZIP, deploying to Vercel or Netlify, and GitHub push.
Export Options by Plan
| Export Type | Free | Basic | Pro | Premium |
|---|---|---|---|---|
| Live subdomain | ✓ | ✓ | ✓ | ✓ |
| Copy HTML | ✓ | ✓ | ✓ | ✓ |
| ZIP download | — | ✓ | ✓ | ✓ |
| GitHub push | — | — | ✓ | ✓ |
| Custom domain | — | — | ✓ | ✓ |
Copy HTML
Open the Code tab in the builder. The full HTML is shown with syntax highlighting.
Click Copy to copy the complete file to your clipboard. This is a self-contained single file with:
- All CSS inline in a <style> block
- All JavaScript inline in a <script> block
- Hero image referenced as an external CDN URL
- Fonts loaded via Google Fonts CDN
This file can be dropped into any static host or opened directly in a browser.
ZIP Download (Basic+)
Click the download icon in the Code tab to download a ZIP archive.
Contents:
- index.html — The complete site
- README.md — Deployment instructions
Unzip and upload index.html to Netlify, Vercel, GitHub Pages, Cloudflare Pages, AWS S3, or any web server.
Deploy to Vercel
index.html into the upload areaNo build configuration needed — it's a static HTML file. Vercel serves it from their global CDN instantly.
Deploy to Netlify
Netlify assigns a *.netlify.app URL. Connect your own domain in Netlify's domain settings.
GitHub Push (Pro+)
From the Code tab, click Push to GitHub after connecting your account in Settings → Integrations.
Draftly creates a new repository with:
- index.html — Your site
- README.md — Setup and deployment notes
- .github/workflows/deploy.yml — GitHub Pages deployment workflow
From GitHub you can deploy to GitHub Pages (free), Vercel, or Netlify with one click.