How to create an about:blank site with given HTML iFrame

I need an about:blank website so I can bypass blockers and I already have the iFrame HTML code and just need to find a way to just create the about:blank website. Any ideas?

Hi there and welcome. To create an about:blank website, you can open a new blank tab using JavaScript window.open("about:blank") and inject your custom HTML content. Since you already have the iframe code, you can insert it into the new tab by writing to its document.

How would I be able to do that in google sites?

If your iframe code references an external URL, you can try embedding it.
Open your Google Sites editor.
Click on “Embed” from the right-side panel.
Choose “Embed code” and paste your iframe code.
Click “Insert” and adjust the size as needed.
If you’re trying to create a fully custom HTML page, Google Sites does not support hosting raw HTML pages directly. You may need to use an external hosting service (like GitHub Pages or Vercel) and embed the hosted page within your Google Site.

Let’s say I want to use vercel, so what would I need to do?

To host your custom HTML page on Vercel and embed it in Google Sites, start by creating an account on Vercel and signing in. If using GitHub, upload your HTML, CSS, and JavaScript files to a repository, then connect your GitHub account to Vercel, select the repository, and deploy. Alternatively, if you prefer direct upload, install the Vercel CLI, navigate to your project folder, and run the vercel command to deploy. Once deployed, Vercel will provide a live URL. Copy this URL, open Google Sites, click “Embed,” select “By URL,” paste the Vercel link, and insert it. Adjust the size as needed, and your custom HTML page will be embedded successfully.

Will try it out thanks