If you want to get started quickly, click on the button below.

This creates a repository in your GitHub account and deploys the application to Cloudflare Workers.
const html = `<!DOCTYPE html>
<p>This markup was generated by a Cloudflare Worker.</p>
return new Response(html, {
"content-type": "text/html;charset=UTF-8",
async fetch(request): Promise<Response> {
const html = `<!DOCTYPE html>
<p>This markup was generated by a Cloudflare Worker.</p>
return new Response(html, {
"content-type": "text/html;charset=UTF-8",
} satisfies ExportedHandler;
from workers import Response
html = """<!DOCTYPE html>
<p>This markup was generated by a Cloudflare Worker.</p>
headers = {"content-type": "text/html;charset=UTF-8"}
return Response(html, headers=headers)
async fn fetch(_req: Request, _env: Env, _ctx: Context) -> Result<Response> {
let html = r#"<!DOCTYPE html>
<p>This markup was generated by a Cloudflare Worker.</p>
Response::from_html(html)
import { Hono } from "hono";
import { html } from "hono/html";
const doc = html`<!DOCTYPE html>
<p>This markup was generated by a Cloudflare Worker with Hono.</p>