Making your website has never been easier.
Follow the steps below to generate a ready-to-use prompt that builds your custom website with AI — in minutes.
Before you build, you need a place for your website to live. Grab a domain name and hosting plan to get started.
Get Your Domain & HostingTell us about your project. Only your email is required — everything else is optional.
Generate your prompt in step 2 to see it here.
Open Claude AI, paste your prompt, and let it build your website. Once it's ready, copy the HTML output into a file called index.html and upload it to your hosting.
Paste this into a file called .htaccess in your hosting root for clean URLs (about, services, contact).
RewriteEngine On
# Redirect to HTTPS
RewriteCond %{HTTPS} off
RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
# Remove trailing slash
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)/$ /$1 [L,R=301]
# Route clean URLs to index.html
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ /index.html [L]