DocsAdvancedDeployment & Export

Deployment & Export

Exporting HTML, downloading ZIP, deploying to Vercel or Netlify, and GitHub push.

Export Options by Plan

Export TypeFreeBasicProPremium
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

1.Download the ZIP and unzip it
2.Go to Vercel → Add New ProjectUpload
3.Drop the folder or index.html into the upload area
4.Click Deploy

No build configuration needed — it's a static HTML file. Vercel serves it from their global CDN instantly.

Deploy to Netlify

1.Go to Netlify → Add new site → Deploy manually
2.Drag and drop the unzipped folder into the upload area
3.Click Deploy

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.