Assuming that the URL you're trying to access is "http://taub-prayer-ramym.c9.io/girls/" (that was the only combination I could find that didn't return a 404, and instead returns "done"), you need these HTTP headers:
GET /girls HTTP/1.1
Host: taub-prayer-ramym.c9.io
User-Agent: ESP8266_HTTP_Client
Connection: keep-alive
Notice firstly that "taub-prayer-ramym" does not appear in the path, only "/girls", and also note that I have set the HTTP version 1.1 - as the Host header, which is usually very necessary on the modern internet, is not defined by version 1.0 of the HTTP specification and hence many servers that receive a 1.0 request do not honour it, causing problems. If you're interested in the reason why, see this post of mine.