HTTP
HTTP, the Hypertext Transfer Protocol, is the application-layer protocol used to transfer web resources and messages between clients and servers.
A browser commonly sends HTTP requests and receives HTTP responses containing status codes, headers and a message body. Methods such as GET and POST describe the purpose of a request.
The request-and-response conversation
A browser commonly sends HTTP requests and receives HTTP responses containing status codes, headers and a message body. Methods such as GET and POST describe the purpose of a request. In practical terms, HTTP belongs to the browser, server or document layer. Knowing that layer is important because it tells you what the term can change, what it cannot change, and where to look when something behaves unexpectedly.
Reading a real browser request
A browser may send GET /styles.css and receive a 200 response containing the stylesheet. A missing file might return 404 instead.
Where HTTP shows its work
You do not need to memorize the term in isolation. It becomes useful when you can recognize it in the tool, browser, file or conversation where the concept is doing real work.
HTTP is not the same thing as a URL
HTTP, the Hypertext Transfer Protocol, is the application-layer protocol used to transfer web resources and messages between clients and servers. By contrast, HTTPS is HTTP carried over an encrypted TLS connection. The two can appear in the same project, but they describe different parts of the work and should not be used as interchangeable labels.
The mistake: treating status codes as decoration
The common mistake is to use HTTP as if it also meant HTTPS. That blurs two separate decisions and usually sends troubleshooting in the wrong direction. A better test is practical: The Network panel shows the request method, response status, headers, timing and returned resource.
Why every web resource depends on the exchange
In day-to-day work, HTTP matters when a client requests a resource and receives a response. The practical value is not the vocabulary itself; it is being able to identify the right control, file, setting or decision when the concept becomes relevant.
A browser may send GET /styles.css and receive a 200 response containing the stylesheet. A missing file might return 404 instead. That example is useful because it turns the definition into something you can recognize, test and discuss with other people working on the same project.
Related terms worth learning next
Sources and further reading
Use these references when you need documentation-level detail, specifications or product-specific behavior beyond the plain-English explanation above.