const html = `
Fill in the receiver name and postal code of your shipment. We’ll look up your return code for the Omolo return portal.
`; // <-- this is just your HTML file pasted into a template literal :contentReference[oaicite:0]{index=0} export default { async fetch(request, env, ctx) { return new Response(html, { headers: { 'content-type': 'text/html; charset=UTF-8', }, }); }, };