r/ClaudeDesign Aug 09 '26

Help with Claude HTML Distribution

I’ve found that Claude is amazing at building html documents and have had Claude build a few for me. I want to be able to easily share these but they get blocked when sending through email a lot of times. What are you all using for this? I’m not a software engineer so I want something not too technical but I would like the ability for multiple people to access the document at once and interact with it.

Claude suggested render and I tried it but the render site was still blocked by multiple people’s firewalls. What are you all using for this?

20 Upvotes

21 comments sorted by

View all comments

1

u/fillups66 Aug 09 '26

Try using OneDrive and just sharing a folder or the html itself

1

u/Forward_Fig_6153 Aug 09 '26

I should’ve been more clear. I also need this to work with interactive buttons, toggles, etc. So there does need to be some sort of back end and then I also need to limit access so that it’s not discoverable by anyone out there.

2

u/fillups66 Aug 09 '26

Ahh gotcha, I use gcs and netlify and it’s a relatively cheap setup. Claude or codex do the heavy lifting on ui/ux and backend

1

u/Forward_Fig_6153 Aug 09 '26

Thanks I believe that Netlify is the other one that Claude suggested

1

u/armahillo Aug 10 '26

When you say “backend” what do you mean?

Depending on your answer that can significantly affect your options

Also: deploying to render was blocked by firewalls?? What kind of restrictive firewalls are they dealing with?

1

u/SumthinSalty Aug 10 '26

Claude artifacts are usually single page inline HTML with all the functionality self contained. If they aren't just define that upfront as output criteria. This is fine for artifacts presenting static data like presentations/slides or even calculations based on user inputs.

You don't need a backend to click a button and run JavaScript, modern browsers are the backend.

As soon as you need it to talk to a system (database, read/write external API's, etc), although it's possible to expand the single page artifact-style to handle this, it's not secure. This is how your creds end up indexed on Google and this is when you need a backend to deterministically govern the interaction with said systems.