Cookies
If we want to remember a user across multiple requests, we have to give them some small token that they can show to to the server on subsequent requests. Image a wristband or hand stamp at a concert or amusement park.
A cookie (also known as a web cookie or browser cookie) is a small piece of data a server sends to a user's web browser. The browser may store cookies, create new cookies, modify existing ones, and send them back to the same server with later requests. Cookies enable web applications to store limited amounts of data and remember state information; by default the HTTP protocol is stateless.
https://developer.mozilla.org/en-US/docs/Web/HTTP/Guides/Cookies