Firstly, fire up telnet with the hostname and port for the HTTP connection:
telnet www.somesite.com 80
If it can connect to the server, then you will be presented with:
Trying www.somesite.com...
Connected to www.somesite.com.
Escape character is '^]'.
Now type the following to request index.html over HTTP:
GET /index.html HTTP/1.1
host: www.somesite.com
This will then return the header information, followed by the actual data.