diff --git a/files/en-us/web/http/basics_of_http/index.html b/files/en-us/web/http/basics_of_http/index.html index 018bf95c8696222..2053e3a21cf88e7 100644 --- a/files/en-us/web/http/basics_of_http/index.html +++ b/files/en-us/web/http/basics_of_http/index.html @@ -31,8 +31,8 @@

Articles

Since HTTP/1.0, different types of content can be transmitted. This article explains how this is accomplished using the {{HTTPHeader("Content-Type")}} header and the MIME standard.
Choosing between www and non-www URLs
This article provides guidance on how to choose whether to use a www-prefixed domain or not, along with the consequences of that choice.
-
Flow of an HTTP session
-
This fundamental article describes a typical HTTP session: What happens under the hood when you click on a link in your browser.
+
Flow of an HTTP session
+
This article describes a typical HTTP session; i.e. what happens when you follow a link or load an image into a web page.
HTTP Messages
HTTP Messages transmitted during requests or responses have a very clear structure. This introductory article describes this structure, its purpose, and its possibilities.
Frame and message structure in HTTP/2
diff --git a/files/en-us/web/http/session/index.html b/files/en-us/web/http/session/index.html index 0dc070e5b88a4f5..2bb3684576e7661 100644 --- a/files/en-us/web/http/session/index.html +++ b/files/en-us/web/http/session/index.html @@ -22,7 +22,10 @@

Establishing a connection

With TCP the default port, for an HTTP server on a computer, is port 80. Other ports can also be used, like 8000 or 8080. The URL of a page to fetch contains both the domain name, and the port number, though the latter can be omitted if it is 80. See Identifying resources on the Web for more details.

-
Note: The client-server model does not allow the server to send data to the client without an explicit request for it. To work around this problem, web developers use several techniques: ping the server periodically via the {{domxref("XMLHTTPRequest")}}, {{domxref("Fetch")}} APIs, using theĀ WebSockets API, or similar protocols.
+
+

Note

+

The client-server model does not allow the server to send data to the client without an explicit request for it. To work around this problem, web developers use several techniques: ping the server periodically via the {{domxref("XMLHTTPRequest")}}, {{domxref("WindowOrWorkerGlobalScope.fetch")}} APIs, using theĀ WebSockets API, or similar protocols.

+

Sending a client request

@@ -66,7 +69,7 @@

Request methods

Structure of a server response