World Wide Web - Wikipedia
World Wide Web - Wikipedia
org/wiki/World_Wide_Web
The original and still very common document type is a web page formatted in Hypertext
Markup Language (HTML). This markup language supports plain text, images, embedded video
and audio contents, and scripts (short programs) that implement complex user interaction. The
HTML language also supports hyperlinks (embedded URLs) which provide immediate access to
other web resources. Web navigation, or web surfing, is the common practice of following such
hyperlinks across multiple websites. Web applications are web pages that function as
application software. The information in the Web is transferred across the Internet using HTTP.
Multiple web resources with a common theme and usually a common domain name make up a
website. A single web server may provide multiple websites, while some websites, especially the
most popular ones, may be provided by multiple servers. Website content is provided by a
myriad of companies, organizations, government agencies, and individual users; and comprises
an enormous amount of educational, entertainment, commercial, and government information.
The Web has become the world's dominant information systems platform.[5][6][7][8] It is the
primary tool that billions of people worldwide use to interact with the Internet.[2]
History
The Web was invented by English computer scientist Tim Berners-Lee while working at CERN.
[9][10] He was motivated by the problem of storing, updating, and finding documents and data
files in that large and constantly changing organization, as well as distributing them to
1 of 24 01-01-2025, 20:26
World Wide Web - Wikipedia https://en.wikipedia.org/wiki/World_Wide_Web
Berners-Lee submitted a proposal to CERN in May 1989, without giving the system a name.[3]
He got a working system implemented by the end of 1990, including a browser called
WorldWideWeb (which became the name of the project and of the network) and an HTTP
server running at CERN. As part of that development he defined the first version of the HTTP
protocol, the basic URL syntax, and implicitly made HTML the primary document format.[14]
The technology was released outside CERN to other research institutions starting in January
1991, and then to the whole Internet on 23 August 1991. The Web was a success at CERN, and
began to spread to other scientific and academic institutions. Within the next two years, there
were 50 websites created.[15][16]
CERN made the Web protocol and code available royalty free in 1993, enabling its widespread
use.[17][18] After the NCSA released the Mosaic web browser later that year, the Web's popularity
grew rapidly as thousands of websites sprang up in less than a year.[19][20] Mosaic was a
graphical browser that could display inline images and submit forms that were processed by the
HTTPd server.[21][22] Marc Andreessen and Jim Clark founded Netscape the following year and
released the Navigator browser, which introduced Java and JavaScript to the Web. It quickly
became the dominant browser. Netscape became a public company in 1995 which triggered a
frenzy for the Web and started the dot-com bubble.[23] Microsoft responded by developing its
own browser, Internet Explorer, starting the browser wars. By bundling it with Windows, it
2 of 24 01-01-2025, 20:26
World Wide Web - Wikipedia https://en.wikipedia.org/wiki/World_Wide_Web
Berners-Lee founded the World Wide Web Consortium (W3C) which created XML in 1996 and
recommended replacing HTML with stricter XHTML.[25] In the meantime, developers began
exploiting an IE feature called XMLHttpRequest to make Ajax applications and launched the
Web 2.0 revolution. Mozilla, Opera, and Apple rejected XHTML and created the WHATWG
which developed HTML5.[26] In 2009, the W3C conceded and abandoned XHTML.[27] In 2019,
it ceded control of the HTML specification to the WHATWG.[28]
The World Wide Web has been central to the development of the Information Age and is the
primary tool billions of people use to interact on the Internet.[29][30][31][8]
Nomenclature
Tim Berners-Lee states that World Wide Web is officially spelled as three separate words, each
capitalised, with no intervening hyphens.[32] Nonetheless, it is often called simply the Web, and
also often the web; see Capitalization of Internet for details. In Mandarin Chinese, World Wide
Web is commonly translated via a phono-semantic matching to wàn wéi wǎng (万维网), which
satisfies www and literally means "10,000-dimensional net", a translation that reflects the
design concept and proliferation of the World Wide Web.
Use of the www prefix has been declining, especially when web applications sought to brand
their domain names and make them easily pronounceable. As the mobile Web grew in
popularity, services like Gmail.com, Outlook.com, Myspace.com, Facebook.com and
Twitter.com are most often mentioned without adding "www." (or, indeed, ".com") to the
domain.[33]
In English, www is usually read as double-u double-u double-u.[34] Some users pronounce it
dub-dub-dub, particularly in New Zealand.[35] Stephen Fry, in his "Podgrams" series of
podcasts, pronounces it wuh wuh wuh.[36] The English writer Douglas Adams once quipped in
The Independent on Sunday (1999): "The World Wide Web is the only thing I know of whose
shortened form takes three times longer to say than what it's short for".[37]
Function
The terms Internet and World Wide Web are often used without much distinction. However,
the two terms do not mean the same thing. The Internet is a global system of computer
networks interconnected through telecommunications and optical networking. In contrast, the
World Wide Web is a global collection of documents and other resources, linked by hyperlinks
and URIs. Web resources are accessed using HTTP or HTTPS, which are application-level
Internet protocols that use the Internet transport protocols.[2]
Viewing a web page on the World Wide Web normally begins either by typing the URL of the
page into a web browser or by following a hyperlink to that page or resource. The web browser
then initiates a series of background communication messages to fetch and display the
requested page. In the 1990s, using a browser to view web pages—and to move from one web
page to another through hyperlinks—came to be known as 'browsing,' 'web surfing' (after
3 of 24 01-01-2025, 20:26
World Wide Web - Wikipedia https://en.wikipedia.org/wiki/World_Wide_Web
The computer receiving the HTTP request delivers it to web server software listening for
requests on port 80. If the web server can fulfil the request it sends an HTTP response back to
the browser indicating success:
HTTP/1.1 200 OK
Content-Type: text/html; charset=UTF-8
followed by the content of the requested page. Hypertext Markup Language (HTML) for a basic
web page might look like this:
<html>
<head>
<title>Example.org – The World Wide Web</title>
</head>
<body>
<p>The World Wide Web, abbreviated as WWW and commonly known ...</p>
</body>
</html>
The web browser parses the HTML and interprets the markup (<title>, <p> for paragraph,
and such) that surrounds the words to format the text on the screen. Many web pages use
HTML to reference the URLs of other resources such as images, other embedded media, scripts
that affect page behaviour, and Cascading Style Sheets that affect page layout. The browser
makes additional HTTP requests to the web server for these other Internet media types. As it
receives their content from the web server, the browser progressively renders the page onto the
screen as specified by its HTML and these additional resources.
4 of 24 01-01-2025, 20:26
World Wide Web - Wikipedia https://en.wikipedia.org/wiki/World_Wide_Web
HTML
Hypertext Markup Language (HTML) is the standard markup language for creating web pages
and web applications. With Cascading Style Sheets (CSS) and JavaScript, it forms a triad of
cornerstone technologies for the World Wide Web.[39]
Web browsers receive HTML documents from a web server or from local storage and render the
documents into multimedia web pages. HTML describes the structure of a web page
semantically and originally included cues for the appearance of the document.
HTML elements are the building blocks of HTML pages. With HTML constructs, images and
other objects such as interactive forms may be embedded into the rendered page. HTML
provides a means to create structured documents by denoting structural semantics for text such
as headings, paragraphs, lists, links, quotes and other items. HTML elements are delineated by
tags, written using angle brackets. Tags such as <img /> and <input /> directly introduce
content into the page. Other tags such as <p> surround and provide information about
document text and may include other tags as sub-elements. Browsers do not display the HTML
tags, but use them to interpret the content of the page.
HTML can embed programs written in a scripting language such as JavaScript, which affects
the behaviour and content of web pages. Inclusion of CSS defines the look and layout of content.
The World Wide Web Consortium (W3C), maintainer of both the HTML and the CSS standards,
has encouraged the use of CSS over explicit presentational HTML since 1997.[40]
Linking
Most web pages contain hyperlinks to other related pages and perhaps to downloadable files,
source documents, definitions and other web resources. In the underlying HTML, a hyperlink
looks like this: <a href="http://example.org/home.html">Example.org Homepage</a>.
WWW prefix
Many hostnames used for the World Wide Web begin with www because of the long-standing
5 of 24 01-01-2025, 20:26
World Wide Web - Wikipedia https://en.wikipedia.org/wiki/World_Wide_Web
practice of naming Internet hosts according to the services they provide. The hostname of a web
server is often www, in the same way that it may be ftp for an FTP server, and news or nntp for
a Usenet news server. These hostnames appear as Domain Name System (DNS) or subdomain
names, as in www.example.com. The use of www is not required by any technical or policy
standard and many websites do not use it; the first web server was nxoc01.cern.ch.[42]
According to Paolo Palazzi, who worked at CERN along with Tim Berners-Lee, the popular use
of www as subdomain was accidental; the World Wide Web project page was intended to be
published at www.cern.ch while info.cern.ch was intended to be the CERN home page; however
the DNS records were never switched, and the practice of prepending www to an institution's
website domain name was subsequently copied.[43] Many established websites still use the
prefix, or they employ other subdomain names such as www2, secure or en for special
purposes. Many such web servers are set up so that both the main domain name (e.g.,
example.com) and the www subdomain (e.g., www.example.com) refer to the same site; others
require one form or the other, or they may map to different web sites. The use of a subdomain
name is useful for load balancing incoming web traffic by creating a CNAME record that points
to a cluster of web servers. Since, currently, only a subdomain can be used in a CNAME, the
same result cannot be achieved by using the bare domain root.[44]
When a user submits an incomplete domain name to a web browser in its address bar input
field, some web browsers automatically try adding the prefix "www" to the beginning of it and
possibly ".com", ".org" and ".net" at the end, depending on what might be missing. For example,
entering "microsoft" may be transformed to http://www.microsoft.com/ and "openoffice" to
http://www.openoffice.org. This feature started appearing in early versions of Firefox, when it
still had the working title 'Firebird' in early 2003, from an earlier practice in browsers such as
Lynx.[45] It is reported that Microsoft was granted a US patent for the same idea in 2008, but
only for mobile devices.[46]
Scheme specifiers
The scheme specifiers http:// and https:// at the start of a web URI refer to Hypertext
Transfer Protocol or HTTP Secure, respectively. They specify the communication protocol to use
for the request and response. The HTTP protocol is fundamental to the operation of the World
Wide Web, and the added encryption layer in HTTPS is essential when browsers send or
retrieve confidential data, such as passwords or banking information. Web browsers usually
automatically prepend http:// to user-entered URIs, if omitted.
Pages
A web page (also written as webpage) is a document that is suitable for the World Wide Web
and web browsers. A web browser displays a web page on a monitor or mobile device.
The term web page usually refers to what is visible, but may also refer to the contents of the
computer file itself, which is usually a text file containing hypertext written in HTML or a
comparable markup language. Typical web pages provide hypertext for browsing to other web
pages via hyperlinks, often referred to as links. Web browsers will frequently have to access
multiple web resource elements, such as reading style sheets, scripts, and images, while
presenting each web page.
On a network, a web browser can retrieve a web page from a remote web server. The web server
6 of 24 01-01-2025, 20:26
World Wide Web - Wikipedia https://en.wikipedia.org/wiki/World_Wide_Web
Static page
A static web page (sometimes called a flat page/stationary
page) is a web page that is delivered to the user exactly as
stored, in contrast to dynamic web pages which are
generated by a web application.
Dynamic pages
A client-side dynamic web page processes the web page using JavaScript running in the
browser. JavaScript programs can interact with the document via Document Object Model, or
DOM, to query page state and alter it. The same client-side techniques can then dynamically
update or change the DOM in the same way.
A dynamic web page is then reloaded by the user or by a computer program to change some
variable content. The updating information could come from the server, or from changes made
to that page's DOM. This may or may not truncate the browsing history or create a saved
7 of 24 01-01-2025, 20:26
World Wide Web - Wikipedia https://en.wikipedia.org/wiki/World_Wide_Web
version to go back to, but a dynamic web page update using Ajax technologies will neither
create a page to go back to nor truncate the web browsing history forward of the displayed page.
Using Ajax technologies the end user gets one dynamic page managed as a single page in the
web browser while the actual web content rendered on that page can vary. The Ajax engine sits
only on the browser requesting parts of its DOM, the DOM, for its client, from an application
server.
Dynamic HTML, or DHTML, is the umbrella term for technologies and methods used to create
web pages that are not static web pages, though it has fallen out of common use since the
popularization of AJAX, a term which is now itself rarely used. Client-side-scripting, server-side
scripting, or a combination of these make for the dynamic web experience in a browser.
JavaScript is a scripting language that was initially developed in 1995 by Brendan Eich, then of
Netscape, for use within web pages.[47] The standardised version is ECMAScript.[47] To make
web pages more interactive, some web applications also use JavaScript techniques such as Ajax
(asynchronous JavaScript and XML). Client-side script is delivered with the page that can make
additional HTTP requests to the server, either in response to user actions such as mouse
movements or clicks, or based on elapsed time. The server's responses are used to modify the
current page rather than creating a new page with each response, so the server needs only to
provide limited, incremental information. Multiple Ajax requests can be handled at the same
time, and users can interact with the page while data is retrieved. Web pages may also regularly
poll the server to check whether new information is available.[48]
Website
A website[49] is a collection of related web resources including web pages, multimedia content,
typically identified with a common domain name, and published on at least one web server.
Notable examples are wikipedia.org, google.com, and amazon.com.
A website may be accessible via a public Internet Protocol (IP) network, such as the Internet, or
a private local area network (LAN), by referencing a uniform resource locator (URL) that
identifies the site.
Websites can have many functions and can be used in various fashions; a website can be a
personal website, a corporate website for a company, a government website, an organization
website, etc. Websites are typically dedicated to a particular topic or purpose, ranging from
entertainment and social networking to providing news and education. All publicly accessible
websites collectively constitute the World Wide Web, while private websites, such as a
company's website for its employees, are typically a part of an intranet.
Web pages, which are the building blocks of websites, are documents, typically composed in
plain text interspersed with formatting instructions of Hypertext Markup Language (HTML,
XHTML). They may incorporate elements from other websites with suitable markup anchors.
Web pages are accessed and transported with the Hypertext Transfer Protocol (HTTP), which
may optionally employ encryption (HTTP Secure, HTTPS) to provide security and privacy for
the user. The user's application, often a web browser, renders the page content according to its
HTML markup instructions onto a display terminal.
Hyperlinking between web pages conveys to the reader the site structure and guides the
8 of 24 01-01-2025, 20:26
World Wide Web - Wikipedia https://en.wikipedia.org/wiki/World_Wide_Web
Browser
A web browser (commonly referred to as a browser) is a
software user agent for accessing information on the
World Wide Web. To connect to a website's server and
display its pages, a user needs to have a web browser
program. This is the program that the user runs to
download, format, and display a web page on the user's
computer.
The usap.gov website
In addition to allowing users to find, display, and move
between web pages, a web browser will usually have
features like keeping bookmarks, recording history, managing cookies (see below), and home
pages and may have facilities for recording passwords for logging into websites.
The most popular browsers are Chrome, Safari, Edge, and Firefox.
Server
A Web server is server software, or hardware dedicated to
running said software, that can satisfy World Wide Web
client requests. A web server can, in general, contain one or
more websites. A web server processes incoming network
requests over HTTP and several other related protocols.
A user agent, commonly a web browser or web crawler, initiates communication by making a
request for a specific resource using HTTP and the server responds with the content of that
resource or an error message if unable to do so. The resource is typically a real file on the
9 of 24 01-01-2025, 20:26
World Wide Web - Wikipedia https://en.wikipedia.org/wiki/World_Wide_Web
Many generic web servers also support server-side Multiple web servers may be used for a high
traffic website; here, Dell servers are installed
scripting using Active Server Pages (ASP), PHP
together to be used for the Wikimedia
(Hypertext Preprocessor), or other scripting
Foundation.
languages. This means that the behaviour of the
webserver can be scripted in separate files, while the
actual server software remains unchanged. Usually, this function is used to generate HTML
documents dynamically ("on-the-fly") as opposed to returning static documents. The former is
primarily used for retrieving or modifying information from databases. The latter is typically
much faster and more easily cached but cannot deliver dynamic content.
Web servers can also frequently be found embedded in devices such as printers, routers,
webcams and serving only a local network. The web server may then be used as a part of a
system for monitoring or administering the device in question. This usually means that no
additional software has to be installed on the client computer since only a web browser is
required (which now is included with most operating systems).
Cookie
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. Cookies were designed to be a reliable mechanism for
websites to remember stateful information (such as items added in the shopping cart in an
online store) or to record the user's browsing activity (including clicking particular buttons,
logging in, or recording which pages were visited in the past). They can also be used to
remember arbitrary pieces of information that the user previously entered into form fields such
as names, addresses, passwords, and credit card numbers.
Cookies perform essential functions in the modern web. Perhaps most importantly,
authentication cookies are the most common method used by web servers to know whether the
user is logged in or not, and which account they are logged in with. Without such a mechanism,
the site would not know whether to send a page containing sensitive information or require the
user to authenticate themselves by logging in. The security of an authentication cookie generally
depends on the security of the issuing website and the user's web browser, and on whether the
cookie data is encrypted. Security vulnerabilities may allow a cookie's data to be read by a
hacker, used to gain access to user data, or used to gain access (with the user's credentials) to
the website to which the cookie belongs (see cross-site scripting and cross-site request forgery
for examples).[51]
Tracking cookies, and especially third-party tracking cookies, are commonly used as ways to
10 of 24 01-01-2025, 20:26
World Wide Web - Wikipedia https://en.wikipedia.org/wiki/World_Wide_Web
compile long-term records of individuals' browsing histories – a potential privacy concern that
prompted European[52] and U.S. lawmakers to take action in 2011.[53][54] European law
requires that all websites targeting European Union member states gain "informed consent"
from users before storing non-essential cookies on their device.
Google Project Zero researcher Jann Horn describes ways cookies can be read by
intermediaries, like Wi-Fi hotspot providers. When in such circumstances, he recommends
using the browser in private browsing mode (widely known as Incognito mode in Google
Chrome).[55]
Search engine
A web search engine or Internet search engine is
a software system that is designed to carry out
web search (Internet search), which means to
search the World Wide Web in a systematic way
for particular information specified in a web
search query. The search results are generally
presented in a line of results, often referred to as
search engine results pages (SERPs). The
information may be a mix of web pages, images,
videos, infographics, articles, research papers,
and other types of files. Some search engines also The results of a search for the term "lunar eclipse"
mine data available in databases or open in a web-based image search engine
Deep web
The deep web,[56] invisible web,[57] or hidden web[58] are parts of the World Wide Web whose
contents are not indexed by standard web search engines. The opposite term to the deep web is
the surface web, which is accessible to anyone using the Internet.[59] Computer scientist
Michael K. Bergman is credited with coining the term deep web in 2001 as a search indexing
term.[60]
The content of the deep web is hidden behind HTTP forms,[61][62] and includes many very
common uses such as web mail, online banking, and services that users must pay for, and which
is protected by a paywall, such as video on demand, some online magazines and newspapers,
among others.
The content of the deep web can be located and accessed by a direct URL or IP address and may
require a password or other security access past the public website page.
Caching
A web cache is a server computer located either on the public Internet or within an enterprise
that stores recently accessed web pages to improve response time for users when the same
11 of 24 01-01-2025, 20:26
World Wide Web - Wikipedia https://en.wikipedia.org/wiki/World_Wide_Web
Security
For criminals, the Web has become a venue to spread
malware and engage in a range of cybercrimes, including
(but not limited to) identity theft, fraud, espionage and
intelligence gathering.[63] Web-based vulnerabilities now
outnumber traditional computer security concerns,[64][65]
and as measured by Google, about one in ten web pages
may contain malicious code.[66] Most web-based attacks Surface Web & Deep Web
take place on legitimate websites, and most, as measured by
Sophos, are hosted in the United States, China and Russia.
[67] The most common of all malware threats is SQL injection attacks against websites.[68]
Through HTML and URIs, the Web was vulnerable to attacks like cross-site scripting (XSS) that
came with the introduction of JavaScript[69] and were exacerbated to some degree by Web 2.0
and Ajax web design that favours the use of scripts.[70] In one 2007 estimate, 70% of all
websites are open to XSS attacks on their users.[71] Phishing is another common threat to the
Web. In February 2013, RSA (the security division of EMC) estimated the global losses from
phishing at $1.5 billion in 2012.[72] Two of the well-known phishing methods are Covert
Redirect and Open Redirect.
Proposed solutions vary. Large security companies like McAfee already design governance and
compliance suites to meet post-9/11 regulations,[73] and some, like Finjan Holdings have
recommended active real-time inspection of programming code and all content regardless of its
source.[63] Some have argued that for enterprises to see Web security as a business opportunity
rather than a cost centre,[74] while others call for "ubiquitous, always-on digital rights
management" enforced in the infrastructure to replace the hundreds of companies that secure
data and networks.[75] Jonathan Zittrain has said users sharing responsibility for computing
safety is far preferable to locking down the Internet.[76]
12 of 24 01-01-2025, 20:26
World Wide Web - Wikipedia https://en.wikipedia.org/wiki/World_Wide_Web
Privacy
Every time a client requests a web page, the server can identify the request's IP address. Web
servers usually log IP addresses in a log file. Also, unless set not to do so, most web browsers
record requested web pages in a viewable history feature, and usually cache much of the content
locally. Unless the server-browser communication uses HTTPS encryption, web requests and
responses travel in plain text across the Internet and can be viewed, recorded, and cached by
intermediate systems. Another way to hide personally identifiable information is by using a
virtual private network. A VPN encrypts traffic between the client and VPN server, and masks
the original IP address, lowering the chance of user identification.
When a web page asks for, and the user supplies, personally identifiable information—such as
their real name, address, e-mail address, etc. web-based entities can associate current web
traffic with that individual. If the website uses HTTP cookies, username, and password
authentication, or other tracking techniques, it can relate other web visits, before and after, to
the identifiable information provided. In this way, a web-based organization can develop and
build a profile of the individual people who use its site or sites. It may be able to build a record
for an individual that includes information about their leisure activities, their shopping
interests, their profession, and other aspects of their demographic profile. These profiles are of
potential interest to marketers, advertisers, and others. Depending on the website's terms and
conditions and the local laws that apply information from these profiles may be sold, shared, or
passed to other organizations without the user being informed. For many ordinary people, this
means little more than some unexpected emails in their inbox or some uncannily relevant
advertising on a future web page. For others, it can mean that time spent indulging an unusual
interest can result in a deluge of further targeted marketing that may be unwelcome. Law
enforcement, counterterrorism, and espionage agencies can also identify, target, and track
individuals based on their interests or proclivities on the Web.
Social networking sites usually try to get users to use their real names, interests, and locations,
rather than pseudonyms, as their executives believe that this makes the social networking
experience more engaging for users. On the other hand, uploaded photographs or unguarded
statements can be identified to an individual, who may regret this exposure. Employers, schools,
parents, and other relatives may be influenced by aspects of social networking profiles, such as
text posts or digital photos, that the posting individual did not intend for these audiences.
Online bullies may make use of personal information to harass or stalk users. Modern social
networking websites allow fine-grained control of the privacy settings for each posting, but
these can be complex and not easy to find or use, especially for beginners.[77] Photographs and
videos posted onto websites have caused particular problems, as they can add a person's face to
an online profile. With modern and potential facial recognition technology, it may then be
possible to relate that face with other, previously anonymous, images, events, and scenarios that
have been imaged elsewhere. Due to image caching, mirroring, and copying, it is difficult to
remove an image from the World Wide Web.
Standards
Web standards include many interdependent standards and specifications, some of which
13 of 24 01-01-2025, 20:26
World Wide Web - Wikipedia https://en.wikipedia.org/wiki/World_Wide_Web
govern aspects of the Internet, not just the World Wide Web. Even when not web-focused, such
standards directly or indirectly affect the development and administration of websites and web
services. Considerations include the interoperability, accessibility and usability of web pages
and web sites.
Web standards are not fixed sets of rules but are constantly evolving sets of finalized technical
specifications of web technologies.[84] Web standards are developed by standards organizations
—groups of interested and often competing parties chartered with the task of standardization—
not technologies developed and declared to be a standard by a single individual or company. It
is crucial to distinguish those specifications that are under development from the ones that
already reached the final development status (in the case of W3C specifications, the highest
maturity level).
Accessibility
There are methods for accessing the Web in alternative mediums and formats to facilitate use by
individuals with disabilities. These disabilities may be visual, auditory, physical, speech-related,
cognitive, neurological, or some combination. Accessibility features also help people with
temporary disabilities, like a broken arm, or ageing users as their abilities change.[85] The Web
is receiving information as well as providing information and interacting with society. The
World Wide Web Consortium claims that it is essential that the Web be accessible, so it can
provide equal access and equal opportunity to people with disabilities.[86] Tim Berners-Lee once
noted, "The power of the Web is in its universality. Access by everyone regardless of disability is
an essential aspect."[85] Many countries regulate web accessibility as a requirement for websites.
[87] International co-operation in the W3C Web Accessibility Initiative led to simple guidelines
that web content authors as well as software developers can use to make the Web accessible to
persons who may or may not be using assistive technology.[85][88]
Internationalisation
The W3C Internationalisation Activity assures that web technology works in all languages,
scripts, and cultures.[89] Beginning in 2004 or 2005, Unicode gained ground and eventually in
December 2007 surpassed both ASCII and Western European as the Web's most frequently
14 of 24 01-01-2025, 20:26
World Wide Web - Wikipedia https://en.wikipedia.org/wiki/World_Wide_Web
See also
Engineering portal
Internet portal
World portal
▪ Decentralized web
▪ Electronic publishing
▪ Gopher (protocol), an early alternative to the WWW
▪ Internet metaphors
▪ Internet security
▪ Lists of websites
▪ Minitel, a predecessor of the WWW
▪ Streaming media
▪ Web 1.0
▪ Web 2.0
▪ Web 3.0
▪ Web3
▪ Web3D
▪ Web development tools
▪ Web literacy
References
1. Wright, Edmund, ed. (2006). The Desk Encyclopedia of World History. New York: Oxford
University Press. p. 312. ISBN 978-0-7394-7809-7.
2. "What is the difference between the Web and the Internet?" (http://www.w3.org/Help/#webin
ternet). W3C Help and FAQ. W3C. 2009. Archived (https://web.archive.org/web/201507090
04648/http://www.w3.org/Help/#webinternet) from the original on 9 July 2015. Retrieved
16 July 2015.
3. Berners-Lee, Tim. "Information Management: A Proposal" (https://www.w3.org/History/1989/
proposal.html). w3.org. The World Wide Web Consortium. Archived (https://web.archive.org/
web/20100401051011/https://www.w3.org/History/1989/proposal.html) from the original on 1
April 2010. Retrieved 12 February 2022.
15 of 24 01-01-2025, 20:26
World Wide Web - Wikipedia https://en.wikipedia.org/wiki/World_Wide_Web
16 of 24 01-01-2025, 20:26
World Wide Web - Wikipedia https://en.wikipedia.org/wiki/World_Wide_Web
17 of 24 01-01-2025, 20:26
World Wide Web - Wikipedia https://en.wikipedia.org/wiki/World_Wide_Web
27. Shankland, Stephen (9 July 2009). "An epitaph for the Web standard, XHTML 2" (https://ww
w.cnet.com/tech/services-and-software/an-epitaph-for-the-web-standard-xhtml-2/). CNet.
Archived (https://web.archive.org/web/20220216142629/https://www.cnet.com/tech/service
s-and-software/an-epitaph-for-the-web-standard-xhtml-2/) from the original on 16 February
2022. Retrieved 17 February 2022.
28. "Memorandum of Understanding Between W3C and WHATWG" (https://www.w3.org/2019/0
4/WHATWG-W3C-MOU.html). W3C. Archived (https://web.archive.org/web/2019052901285
4/https://www.w3.org/2019/04/WHATWG-W3C-MOU.html) from the original on 29 May
2019. Retrieved 16 February 2022.
29. In, Lee (30 June 2012). Electronic Commerce Management for Business Activities and
Global Enterprises: Competitive Advantages: Competitive Advantages (https://books.googl
e.com/books?id=wKyeBQAAQBAJ&pg=PA7). IGI Global. ISBN 978-1-4666-1801-5.
Archived (https://web.archive.org/web/20240421053156/https://books.google.com/books?id
=wKyeBQAAQBAJ&pg=PA7#v=onepage&q&f=false) from the original on 21 April 2024.
Retrieved 27 September 2020.
30. Misiroglu, Gina (26 March 2015). American Countercultures: An Encyclopedia of
Nonconformists, Alternative Lifestyles, and Radical Ideas in U.S. History: An Encyclopedia
of Nonconformists, Alternative Lifestyles, and Radical Ideas in U.S. History (https://books.go
ogle.com/books?id=j4KsBwAAQBAJ&pg=PA398). Routledge. ISBN 978-1-317-47729-7.
Archived (https://web.archive.org/web/20240421053157/https://books.google.com/books?id
=j4KsBwAAQBAJ&pg=PA398#v=onepage&q&f=false) from the original on 21 April 2024.
Retrieved 27 September 2020.
31. "World Wide Web Timeline" (http://www.pewinternet.org/2014/03/11/world-wide-web-timelin
e). Pew Research Center. 11 March 2014. Archived (https://web.archive.org/web/20150729
162322/http://www.pewinternet.org/2014/03/11/world-wide-web-timeline/) from the original
on 29 July 2015. Retrieved 1 August 2015.
32. "Frequently asked questions - Spelling of WWW" (https://w3.org/People/Berners-Lee/FAQ.ht
ml). W3C. Archived (https://web.archive.org/web/20090802051415/http://www.w3.org/Peopl
e/Berners-Lee/FAQ.html) from the original on 2 August 2009. Retrieved 27 July 2009.
33. Castelluccio, Michael (1 October 2010). "It's not your grandfather's Internet" (https://www.the
freelibrary.com/It%27s+not+your+grandfather%27s+Internet.-a0239804575). Strategic
Finance. Institute of Management Accountants. Archived (https://web.archive.org/web/2016
0305145947/http://www.thefreelibrary.com/It%27s+not+your+grandfather%27s+Internet.-a0
239804575) from the original on 5 March 2016. Retrieved 7 February 2016 – via The Free
Library.
34. "Audible pronunciation of 'WWW' " (https://web.archive.org/web/20140525195152/http://ww
w.oxforddictionaries.com/us/definition/american_english/WWW?q=www). Oxford University
Press. Archived from the original (http://www.oxforddictionaries.com/us/definition/american_
english/WWW?q=www) on 25 May 2014. Retrieved 25 May 2014.
35. Harvey, Charlie (18 August 2015). "How we pronounce WWW in English: a detailed but
unscientific survey" (https://charlieharvey.org.uk/page/how_we_pronounce_www).
charlieharvey.org.uk. Archived (https://web.archive.org/web/20221119073310/https://charlie
harvey.org.uk/page/how_we_pronounce_www) from the original on 19 November 2022.
Retrieved 19 May 2022.
36. "Stephen Fry's pronunciation of 'WWW' " (https://web.archive.org/web/20170404220105/htt
p://www.podcasts.com/stephen_frys_podgrams_audio_visual/episode/series_2_episode_1_
stephenfry.com_2.0). Podcasts.com. Archived from the original (http://www.podcasts.com/st
ephen_frys_podgrams_audio_visual/episode/series_2_episode_1_stephenfry.com_2.0) on
4 April 2017.
18 of 24 01-01-2025, 20:26
World Wide Web - Wikipedia https://en.wikipedia.org/wiki/World_Wide_Web
37. Simonite, Tom (22 July 2008). "Help us find a better way to pronounce www" (https://www.n
ewscientist.com/blog/technology/2008/07/help-us-find-better-way-to-pronounce.html).
newscientist.com. New Scientist, Technology. Archived (https://web.archive.org/web/201603
13095715/https://www.newscientist.com/blog/technology/2008/07/help-us-find-better-way-t
o-pronounce.html) from the original on 13 March 2016. Retrieved 7 February 2016.
38. Muylle, Steve; Moenaert, Rudy; Despont, Marc (1999). "A grounded theory of World Wide
Web search behaviour". Journal of Marketing Communications. 5 (3): 143.
doi:10.1080/135272699345644 (https://doi.org/10.1080%2F135272699345644).
39. Flanagan, David. JavaScript – The definitive guide (6 ed.). p. 1. "JavaScript is part of the
triad of technologies that all Web developers must learn: HTML to specify the content of
web pages, CSS to specify the presentation of web pages, and JavaScript to specify the
behaviour of web pages."
40. "HTML 4.0 Specification – W3C Recommendation – Conformance: requirements and
recommendations" (https://www.w3.org/TR/REC-html40-971218/conform.html#deprecated).
World Wide Web Consortium. 18 December 1997. Archived (https://web.archive.org/web/20
150705040855/http://www.w3.org/TR/REC-html40-971218/conform.html#deprecated) from
the original on 5 July 2015. Retrieved 6 July 2015.
41. Berners-Lee, Tim; Cailliau, Robert (12 November 1990). "WorldWideWeb: Proposal for a
HyperText Project" (http://w3.org/Proposal.html). Archived (https://web.archive.org/web/201
50502080527/http://www.w3.org/Proposal.html) from the original on 2 May 2015. Retrieved
12 May 2015.
42. Berners-Lee, Tim. "Frequently asked questions by the Press" (http://w3.org/People/Berners-
Lee/FAQ.html). W3C. Archived (https://web.archive.org/web/20090802051415/http://www.w
3.org/People/Berners-Lee/FAQ.html) from the original on 2 August 2009. Retrieved 27 July
2009.
43. Palazzi, P (2011). "The Early Days of the WWW at CERN" (https://web.archive.org/web/201
20723105704/http://soft-shake.ch/2011/en/conference/sessions.html?key=earlydays).
Archived from the original (http://soft-shake.ch/2011/en/conference/sessions.html?key=early
days) on 23 July 2012.
44. Fraser, Dominic (13 May 2018). "Why a domain's root can't be a CNAME – and other tidbits
about the DNS" (https://medium.freecodecamp.org/why-cant-a-domain-s-root-be-a-cname-8
cbab38e5f5c). FreeCodeCamp. Archived (https://web.archive.org/web/20240421053219/htt
ps://www.freecodecamp.org/news/why-cant-a-domain-s-root-be-a-cname-8cbab38e5f5c)
from the original on 21 April 2024. Retrieved 12 March 2019.
45. "automatically adding www.___.com" (http://forums.mozillazine.org/viewtopic.php?f=9&t=10
980). mozillaZine. 16 May 2003. Archived (https://web.archive.org/web/20090627225046/htt
p://forums.mozillazine.org/viewtopic.php?f=9&t=10980) from the original on 27 June 2009.
Retrieved 27 May 2009.
46. Masnick, Mike (7 July 2008). "Microsoft Patents Adding 'www.' And '.com' To Text" (https://te
chdirt.com/articles/20080626/0203581527.shtml). Techdirt. Archived (https://web.archive.or
g/web/20090627212151/http://www.techdirt.com/articles/20080626/0203581527.shtml) from
the original on 27 June 2009. Retrieved 27 May 2009.
47. Hamilton, Naomi (31 July 2008). "The A-Z of Programming Languages: JavaScript" (http://c
omputerworld.com.au/article/255293/-z_programming_languages_javascript).
Computerworld. IDG. Archived (https://web.archive.org/web/20090524025720/http://www.co
mputerworld.com.au/article/255293/-z_programming_languages_javascript) from the
original on 24 May 2009. Retrieved 12 May 2009.
48. Buntin, Seth (23 September 2008). "jQuery Polling plugin" (https://web.archive.org/web/200
90813184848/http://buntin.org/2008/sep/23/jquery-polling-plugin/). Archived from the
original (http://buntin.org/2008/sep/23/jquery-polling-plugin/) on 13 August 2009. Retrieved
22 August 2009.
19 of 24 01-01-2025, 20:26
World Wide Web - Wikipedia https://en.wikipedia.org/wiki/World_Wide_Web
20 of 24 01-01-2025, 20:26
World Wide Web - Wikipedia https://en.wikipedia.org/wiki/World_Wide_Web
63. Ben-Itzhak, Yuval (18 April 2008). "Infosecurity 2008 – New defence strategy in battle
against e-crime" (http://www.computerweekly.com/Articles/2008/04/18/230345/infosecurity-2
008-new-defence-strategy-in-battle-against.htm). ComputerWeekly. Reed Business
Information. Archived (https://web.archive.org/web/20080604061926/http://www.computerw
eekly.com/Articles/2008/04/18/230345/infosecurity-2008-new-defence-strategy-in-battle-aga
inst.htm) from the original on 4 June 2008. Retrieved 20 April 2008.
64. Christey, Steve & Martin, Robert A. (22 May 2007). "Vulnerability Type Distributions in CVE
(version 1.1)" (http://cwe.mitre.org/documents/vuln-trends/index.html). MITRE Corporation.
Archived (https://web.archive.org/web/20130317191715/http://cwe.mitre.org/documents/vul
n-trends/index.html) from the original on 17 March 2013. Retrieved 7 June 2008.
65. "Symantec Internet Security Threat Report: Trends for July–December 2007 (Executive
Summary)" (https://web.archive.org/web/20080625065121/http://eval.symantec.com/mktginf
o/enterprise/white_papers/b-whitepaper_exec_summary_internet_security_threat_report_xiii
_04-2008.en-us.pdf) (PDF). Symantec Internet Security Threat Report. XIII. Symantec
Corp.: 1–2 April 2008. Archived from the original (http://eval.symantec.com/mktginfo/enterpri
se/white_papers/b-whitepaper_exec_summary_internet_security_threat_report_xiii_04-200
8.en-us.pdf) (PDF) on 25 June 2008. Retrieved 11 May 2008.
66. "Google searches web's dark side" (http://news.bbc.co.uk/2/hi/technology/6645895.stm).
BBC News. 11 May 2007. Archived (https://web.archive.org/web/20080307211615/http://ne
ws.bbc.co.uk/2/hi/technology/6645895.stm) from the original on 7 March 2008. Retrieved
26 April 2008.
67. "Security Threat Report (Q1 2008)" (https://www.sophos.com/sophos/docs/eng/marketing_
material/sophos-threat-report-Q108.pdf) (PDF). Sophos. Archived (https://web.archive.org/w
eb/20131231084932/http://www.sophos.com/en-us/support/documentation.aspx?requested
=eng%2Fmarketing_material%2Fsophos-threat-report-Q108.pdf) (PDF) from the original on
31 December 2013. Retrieved 24 April 2008.
68. "Security threat report" (https://www.sophos.com/sophos/docs/eng/papers/sophos-security-r
eport-jul08-srna.pdf) (PDF). Sophos. July 2008. Archived (https://web.archive.org/web/2013
1231084007/http://www.sophos.com/en-us/medialibrary/gated%20assets/white%20papers/s
ophossecurityreportjul08srna.pdf) (PDF) from the original on 31 December 2013. Retrieved
24 August 2008.
69. Fogie, Seth, Jeremiah Grossman, Robert Hansen, and Anton Rager (2007). Cross Site
Scripting Attacks: XSS Exploits and Defense (https://web.archive.org/web/2008062506512
1/http://www.syngress.com/book_catalog//SAMPLE_1597491543.pdf) (PDF). Syngress,
Elsevier Science & Technology. pp. 68–69, 127. ISBN 978-1-59749-154-9. Archived from
the original (http://www.syngress.com/book_catalog//SAMPLE_1597491543.pdf) (PDF) on
25 June 2008. Retrieved 6 June 2008.
70. O'Reilly, Tim (30 September 2005). "What Is Web 2.0" (http://www.oreillynet.com/pub/a/oreill
y/tim/news/2005/09/30/what-is-web-20.html). O'Reilly Media. pp. 4–5. Archived (https://archi
ve.today/20120628212146/http://www.oreillynet.com/pub/a/oreilly/tim/news/2005/09/30/wha
t-is-web-20.html) from the original on 28 June 2012. Retrieved 4 June 2008. and AJAX web
applications can introduce security vulnerabilities like "client-side security controls,
increased attack surfaces, and new possibilities for Cross-Site Scripting (XSS)", in Ritchie,
Paul (March 2007). "The security risks of AJAX/web 2.0 applications" (https://web.archive.or
g/web/20080625065122/http://www.infosecurity-magazine.com/research/Sep07_Ajax.pdf)
(PDF). Infosecurity. Archived from the original (http://www.infosecurity-magazine.com/resear
ch/Sep07_Ajax.pdf) (PDF) on 25 June 2008. Retrieved 6 June 2008. which cites Hayre,
Jaswinder S. & Kelath, Jayasankar (22 June 2006). "Ajax Security Basics" (http://www.secur
ityfocus.com/infocus/1868). SecurityFocus. Archived (https://web.archive.org/web/20080515
114747/http://www.securityfocus.com/infocus/1868) from the original on 15 May 2008.
Retrieved 6 June 2008.
21 of 24 01-01-2025, 20:26
World Wide Web - Wikipedia https://en.wikipedia.org/wiki/World_Wide_Web
71. Berinato, Scott (1 January 2007). "Software Vulnerability Disclosure: The Chilling Effect" (htt
ps://web.archive.org/web/20080418072230/http://www.csoonline.com/article/221113). CSO.
CXO Media. p. 7. Archived from the original (http://www.csoonline.com/article/221113) on 18
April 2008. Retrieved 7 June 2008.
72. "2012 Global Losses From phishing Estimated At $1.5 Bn" (http://firstbiz.firstpost.com/biztec
h/2012-global-losses-from-phishing-estimated-at-1-5-bn-16850.html). FirstPost. 20 February
2013. Archived (https://web.archive.org/web/20141221122958/http://firstbiz.firstpost.com/biz
tech/2012-global-losses-from-phishing-estimated-at-1-5-bn-16850.html) from the original on
21 December 2014. Retrieved 25 January 2019.
73. Prince, Brian (9 April 2008). "McAfee Governance, Risk and Compliance Business Unit" (htt
p://www.eweek.com/c/a/Security/McAfee-Governance-Risk-and-Compliance-Business-Unit/)
. eWEEK. Ziff Davis Enterprise Holdings. Archived (https://web.archive.org/web/202404210
53243/https://www.eweek.com/security/mcafee-governance-risk-and-compliance-business-u
nit/) from the original on 21 April 2024. Retrieved 25 April 2008.
74. Preston, Rob (12 April 2008). "Down To Business: It's Past Time To Elevate The Infosec
Conversation" (http://www.informationweek.com/news/security/client/showArticle.jhtml?articl
eID=207100989). InformationWeek. United Business Media. Archived (https://web.archive.o
rg/web/20080414031843/http://www.informationweek.com/news/security/client/showArticle.j
html?articleID=207100989) from the original on 14 April 2008. Retrieved 25 April 2008.
75. Claburn, Thomas (6 February 2007). "RSA's Coviello Predicts Security Consolidation" (htt
p://www.informationweek.com/news/security/showArticle.jhtml?articleID=197003826).
InformationWeek. United Business Media. Archived (https://web.archive.org/web/20090207
091418/http://www.informationweek.com/news/security/showArticle.jhtml?articleID=1970038
26) from the original on 7 February 2009. Retrieved 25 April 2008.
76. Duffy Marsan, Carolyn (9 April 2008). "How the iPhone is killing the 'Net" (https://web.archiv
e.org/web/20080414043829/http://www.networkworld.com/news/2008/040908-zittrain.html).
Network World. IDG. Archived from the original (http://www.networkworld.com/news/2008/0
40908-zittrain.html) on 14 April 2008. Retrieved 17 April 2008.
77. boyd, danah; Hargittai, Eszter (July 2010). "Facebook privacy settings: Who cares?" (https://
doi.org/10.5210%2Ffm.v15i8.3086). First Monday. 15 (8). doi:10.5210/fm.v15i8.3086 (http
s://doi.org/10.5210%2Ffm.v15i8.3086).
78. "W3C Technical Reports and Publications" (http://www.w3.org/TR/#Recommendations).
W3C. Archived (https://web.archive.org/web/20180715045533/http://www.w3.org/TR/#Reco
mmendations) from the original on 15 July 2018. Retrieved 19 January 2009.
79. "IETF RFC page" (https://web.archive.org/web/20090202124230/http://www.ietf.org/rfc.html)
. IETF. Archived from the original (http://www.ietf.org/rfc.html) on 2 February 2009. Retrieved
19 January 2009.
80. "Search for World Wide Web in ISO standards" (http://www.iso.org/iso/search.htm?qt=world
+wide+web&published=on&active_tab=standards). ISO. Archived (https://web.archive.org/w
eb/20160304072654/http://www.iso.org/iso/search.htm?qt=world+wide+web&published=on
&active_tab=standards) from the original on 4 March 2016. Retrieved 19 January 2009.
81. "Ecma formal publications" (http://www.ecma-international.org/publications/index.html).
Ecma. Archived (https://web.archive.org/web/20171227133707/http://www.ecma-internation
al.org/publications/index.html) from the original on 27 December 2017. Retrieved
19 January 2009.
82. "Unicode Technical Reports" (https://www.unicode.org/reports/index.html). Unicode
Consortium. Archived (https://web.archive.org/web/20220102053035/https://www.unicode.or
g/reports/index.html) from the original on 2 January 2022. Retrieved 19 January 2009.
83. "IANA home page" (https://www.iana.org/). IANA. Archived (https://web.archive.org/web/201
10224160727/http://www.iana.org/) from the original on 24 February 2011. Retrieved
19 January 2009.
22 of 24 01-01-2025, 20:26
World Wide Web - Wikipedia https://en.wikipedia.org/wiki/World_Wide_Web
84. Sikos, Leslie (2011). Web standards – Mastering HTML5, CSS3, and XML (https://web.archi
ve.org/web/20150402152305/http://www.masteringhtml5css3.com/). Apress.
ISBN 978-1-4302-4041-9. Archived from the original (http://www.masteringhtml5css3.com/)
on 2 April 2015. Retrieved 12 March 2019.
85. "Web Accessibility Initiative (WAI)" (https://web.archive.org/web/20090402001730/http://ww
w.w3.org/WAI/). World Wide Web Consortium. Archived from the original (http://www.w3.org/
WAI) on 2 April 2009. Retrieved 7 April 2009.
86. "Developing a Web Accessibility Business Case for Your Organization: Overview" (http://ww
w.w3.org/WAI/bcase/Overview). World Wide Web Consortium. Archived (https://web.archiv
e.org/web/20090414173026/http://www.w3.org/WAI/bcase/Overview) from the original on 14
April 2009. Retrieved 7 April 2009.
87. "Legal and Policy Factors in Developing a Web Accessibility Business Case for Your
Organization" (http://www.w3.org/WAI/bcase/pol). World Wide Web Consortium. Archived (h
ttps://web.archive.org/web/20090405142512/http://www.w3.org/WAI/bcase/pol) from the
original on 5 April 2009. Retrieved 7 April 2009.
88. "Web Content Accessibility Guidelines (WCAG) Overview" (http://www.w3.org/WAI/intro/wca
g.php). World Wide Web Consortium. Archived (https://web.archive.org/web/200904010747
42/http://www.w3.org/WAI/intro/wcag.php) from the original on 1 April 2009. Retrieved
7 April 2009.
89. "Internationalization (I18n) Activity" (http://www.w3.org/International/). World Wide Web
Consortium. Archived (https://web.archive.org/web/20090416052903/http://www.w3.org/Inte
rnational/) from the original on 16 April 2009. Retrieved 10 April 2009.
90. Davis, Mark (5 April 2008). "Moving to Unicode 5.1" (http://googleblog.blogspot.com/2008/0
5/moving-to-unicode-51.html). Archived (https://web.archive.org/web/20090521191341/htt
p://googleblog.blogspot.com/2008/05/moving-to-unicode-51.html) from the original on 21
May 2009. Retrieved 10 April 2009.
91. "World Wide Web Consortium Supports the IETF URI Standard and IRI Proposed Standard"
(http://www.w3.org/2004/11/uri-iri-pressrelease.html) (Press release). World Wide Web
Consortium. 26 January 2005. Archived (https://web.archive.org/web/20090207070535/htt
p://www.w3.org/2004/11/uri-iri-pressrelease.html) from the original on 7 February 2009.
Retrieved 10 April 2009.
Further reading
▪ Berners-Lee, Tim; Bray, Tim; Connolly, Dan; Cotton, Paul; Fielding, Roy; Jeckle, Mario;
Lilley, Chris; Mendelsohn, Noah; Orchard, David; Walsh, Norman; Williams, Stuart (15
December 2004). "Architecture of the World Wide Web, Volume One" (http://www.w3.org/T
R/webarch/). W3C. Version 20041215.
▪ Berners-Lee, Tim (August 1996). "The World Wide Web: Past, Present and Future" (http://w
ww.w3.org/People/Berners-Lee/1996/ppf.html). W3C.
▪ Brügger, Niels, ed, Web25: Histories from the first 25 years of the World Wide Web (Peter
Lang, 2017).
▪ Fielding, R.; Gettys, J.; Mogul, J.; Frystyk, H.; Masinter, L.; Leach, P.; Berners-Lee, T. (June
1999). "Hypertext Transfer Protocol – HTTP/1.1". Request For Comments 2616. Information
Sciences Institute.
▪ Niels Brügger, ed. Web History (2010) 362 pages; Historical perspective on the World Wide
Web, including issues of culture, content, and preservation.
▪ Polo, Luciano (2003). "World Wide Web Technology Architecture: A Conceptual Analysis" (h
ttp://www.newdevices.com/publicaciones/www/index.html). New Devices.
▪ Skau, H.O. (March 1990). "The World Wide Web and Health Information". New Devices.
23 of 24 01-01-2025, 20:26
World Wide Web - Wikipedia https://en.wikipedia.org/wiki/World_Wide_Web
External links
▪ The first website (http://info.cern.ch/hypertext/WWW/TheProject.html)
▪ Early archive of the first Web site (http://www.w3.org/History/19921103-hypertext/hypertext/
WWW/)
▪ Internet Statistics: Growth and Usage of the Web and the Internet (https://www.mit.edu/peop
le/mkgray/net/)
▪ Living Internet (http://www.livinginternet.com/w/w.htm) A comprehensive history of the
Internet, including the World Wide Web
▪ World Wide Web Consortium (W3C) (http://www.w3.org/)
▪ W3C Recommendations Reduce "World Wide Wait" (http://www.w3.org/Protocols/NL-PerfN
ote.html)
▪ World Wide Web Size (http://www.worldwidewebsize.com/) Daily estimated size of the
World Wide Web
▪ Antonio A. Casilli, Some Elements for a Sociology of Online Interactions (https://web.archiv
e.org/web/20110501162838/http://cle.ens-lyon.fr/40528325/0/fiche___pagelibre/)
▪ The Erdős Webgraph Server (http://web-graph.org/) Archived (https://web.archive.org/web/2
0210301013100/http://web-graph.org/) 1 March 2021 at the Wayback Machine offers weekly
updated graph representation of a constantly increasing fraction of the WWW
▪ The 25th Anniversary of the World Wide Web (http://techchange.org/work/u-s-global-develo
pment-lab-25th-anniversary-of-the-world-wide-web/) Archived (https://web.archive.org/web/2
0210711202508/https://www.techchange.org/work/u-s-global-development-lab-25th-anniver
sary-of-the-world-wide-web/) 11 July 2021 at the Wayback Machine is an animated video
produced by USAID and TechChange which explores the role of the WWW in addressing
extreme poverty
24 of 24 01-01-2025, 20:26