An HTTP request is a message sent from a client to a server to fetch data or perform an action. It includes a method (e.g., GET, POST), URL, headers, and optionally a body.
Also known as: Client request.
This HTTP request uses the POST method to send form data (name and email) to the server at /submit-form. It includes headers like Content-Type to specify the type of data and Content-Length to indicate the size of the body. The body carries the form data to be processed by the server.