public HttpResponseMessage GetHTML()
{
    var response = this.Request.CreateResponse();
    response.Content = new StringContent(@"
        <html>
          <head>
          </head>
        <body>
            Test
        </body>
        </html>
    ");
    response.Content.Headers.ContentType = new MediaTypeHeaderValue("text/html");
    return response;