functionhandler(_req){// Create a response with html as its body.const response =newResponse("<html> Hello </html>",{
status:200,
headers:{"content-type":"text/html",},});console.log(response.status);// 200console.log(response.headers.get("content-type"));// text/htmlreturn response;}
Deno.serve(handler);