Sending gzip format array of a webpage instead of a html code string

i was able to send the examples provided in httpserver repository, successfully and controlled the LED on board from the http server. Now I want to send my custom page that has been compressed from html to “gzip” format. It is located in a variable like this:

static const unsigned char Monitoring_html_gz = {0x1f,0x8b,0x08,0x00,0xd8,0xf0,0x34,0x64 //etc};

how can i send this array instead of html code?