| Viewing
a Web page or other resource on the World Wide Web normally begins
either by typing the URL of the page into a Web browser, or by following
a hypertext link to that page or resource. The first step, behind
the scenes, is for the server-name part of the URL to be resolved
into an IP address by the global, distributed Internet database
known as the Domain name system or DNS. The browser then establishes
a TCP connection with the server at that IP address.
The next step is for an HTTP request
to be sent to the Web server, requesting the resource. In the case
of a typical Web page, the HTML text is first requested and parsed
by the browser, which then makes additional requests for graphics
and any other files that form a part of the page in quick succession.
When considering web site popularity statistics, these additional
file requests give rise to the difference between one single 'page
view' and an associated number of server 'hits'.
The Web browser then renders the page
as described by the HTML, CSS and other files received, incorporating
the images and other resources as necessary. This produces the on-screen
page that the viewer sees.
Most Web pages will themselves contain
hyperlinks to other related pages and perhaps to downloads, source
documents, definitions and other Web resources.
Such a collection of useful,
related resources, interconnected via hypertext links, is what has
been dubbed a 'web' of information. Making it available on the Internet
created what Tim Berners-Lee first called the WorldWideWeb (note
the name's use of CamelCase, subsequently discarded) in 1990.
|