anatomy of a status line
HTTP 1.1 200 ok (200=status code, ok=reason phrase)
status HTTP 1.1 code 200 ok
document found
status code HTTP 1.1 302 found
document located somewhere else
status code 1, 2, 3, 4, 5
2 = ok, 3=do something different technically to get document, 4=error on browser side, 5=error on server side
status code HTTP 1.1 404 not found
doc not found
status code HTTP 1.1 500 found
server broke trying to find
connect to site with telnet
telnet www.website.com 80
GET / HTTP/1.0 (1.0 closes connection for you. 1.1 keeps connection open)