method Drash.Response.prototype.htmlimport { Drash } from "https://deno.land/x/drash@v2.7.0/tests/deps.ts"; const { Response } = Drash; html(html: string,status?: number,headers?: Record<string, string>,): voidSet the body of this response as HTML. Parametershtml: string The HTML string to assign to the body. optionalstatus: number Status to respond with. optionalheaders: Record<string, string> = [UNSUPPORTED] Any extra headers you wish to specify apart of the content-type header. Returnsvoid