# Cookies An HTTP cookie (also called web cookie, Internet cookie, browser cookie, or simply cookie) is a small piece of data sent from a website and stored on the user's computer by the user's web browser while the user is browsing. # SameSite Cookies [web.dev has a very insightful article on SameSite cookies](https://web.dev/samesite-cookies-explained/). Read it to understand how they work.
ValueIntended UseExample
SameSite=LaxFunctionality affecting the display of the site. Includes first request.Theme switcher
SameSite=StrictRelating to actions the user initiates. From second request.Password change
SameSite=NoneFunctionality affecting the embedding of the site content. Cookies with SameSite=None must also specify Secure, meaning they require a secure context.Watch it later button
-Legacy. Cookies without a SameSite attribute will be treated as SameSite=Lax. -