Sei sulla pagina 1di 6

 History and evolution of the Web

The Web is an idea that was built on the Internet. Physical connections are on the Internet, but
introduces a number of new ideas, inheriting the existing ones.

It began in early 1990 in Switzerland at the research center CERN (Center of Studies for Nuclear
Research) and the idea was Tim Berners-Lee, who was conceived by observing a notebook he used
to add and maintain references to how they worked computers at CERN.

Before the Web, how to get data from the Internet was chaotic: there were countless possible ways
and thus had to learn multiple programs and operating systems. The Web introduces a fundamental
concept: the possibility of universal reading, which is that once the information is available, can be
accessed from any computer, from any country, any authorized person, using one simple program.
To make this possible, a number of concepts are used, the best known is the hypertext.

Web novice users could have a tremendous power to find and access the wealth of information
located in computation systems worldwide.

This fact alone took a tremendous breakthrough Internet, such a big momentum in 1993 World
Wide Web grew a surprising 341000%, three years later, in 1996, still is doubling every 50 days.

 What is a web page?

The World Wide Web allows a more organized access to information available on
the Internet way, presenting a friendly user interface via browsers such as Netscape,
Mosaic and Microsoft Internet Explorer.

The emergence of the World Wide Web has helped a considerable growth of the
Internet today. small companies, large companies, municipalities, states,
governments of different countries, universities, libraries are present on the
Internet.

 Which types of Web pages?


Types of Web pages by construction

Static websites
These pages are characterized by showing a permanent information that the user
can not interact with the page except to read the contents. Do not use databases,
but the information resides on the server, so to modify it, you access the server and
change its contents. These pages are used for purely informative websites

dynamic websites

Unlike the websites static pages into dynamic web content can be modified by
users who visit and are allowed to create or modify the appearance of this through
the same navigation forms, text, images, videos , etc. Among these would be the
forums, blogs, ecommerces with cart, different sections chip product in which users
can comment and the rest of the pages where visitors can create or interact with
the information displayed themselves. These contents interact with a database in
which are stored each user records.

And according to their functionality, we can classify them:

Blogs

A blog like this one you are reading right now is a portal where opinion pieces
published a topic in particular and where the contents are usually structured
appearing first the latest. In this type of websites, users can write comments to blog
entries also giving their point of view. Currently, most blogs are made with
WordPress CMS makes tasks easier programming and maintenance mismo.blog

Online stores

The ecommerces or online stores are websites where products or services are
marketed. Currently they are having a great growth because many users already
conduct their transactions over the Internet and also many traditional shops have
been launched to develop such sites to generate business on the net. To give you
some information, some ecommerces have already become giants and distribution
are some of the largest companies in the world as Alibaba or Amazon.

corporate websites

Corporate websites are those that describe the characteristics of the company
where main information the same as who is collected, its location, engaged and
other data from the company. It is also often displayed on these sites the main
products or services offered by the company, but there is no possibility of hiring
them via online.

forums

A forum or a community is a virtual space where a number of people gather to


discuss a particular topic. Forums usually have two figures, the same administrator
or administrators and users, the first are responsible for moderating the messages
and publishing seconds. Forums can also be included somewhere in sections to
facilitate a discussion space to users who visit these páginas.foro

Download site

The aim of these pages is to provide the user with the information you are looking
for download form some sort of file. These files can be software to install on the
user's computer and other files in different types of formats. Here we can group
Softonic, El Rincón del Vago and websites of this kind we've all ever visited and
downloads that are repositories.

searchers

Pages created for users to conduct their inquiries and they returned them a series
of results with the best pages on that particular query. They may include
advertising, in fact, Google gets most of its revenue from its Google Adwords
advertising program in your browser.

News websites

Where websites are constantly rising news for the reader to consume and can
comment on them. Paper newspapers all have websites, which are in fact one of the
most visited Internet sites and then we also have news sites that can be created by
the user as the paper.li known.

wikis
Are websites where users are those who create and modify content directly from
your browser. The most famous wiki is Wikipedia, one of the most visited websites
in the world.

Video consumption sites

There are several websites where you can consume audiovisual content, the best
known is YouTube, but there are others like Dailymotion or Vimeo. These websites,
also financed through advertising like television.

Youtube

educational sites

The online or e-learning, training has taken great importance in recent years and it
is strange not to find someone who has not done any distance learning course over
the Internet. To carry out these formations there are websites that become "virtual
classrooms" where students can view content, interact with other students and
consult on the content you are studying.

Games Websites

Online games are one of the most rapidly expanding markets in the virtual world,
for many years before the existence of the Internet, many have enjoyed leisure time
alone or with friends. With the birth of the Internet, this sector has increased its
presence and although I am not very "gamer" there are platforms like Steam where
you can choose from a number of online games to enjoy hours and hours of
entertainment.

comparators

There are also Internet sites totally dedicated to comparing products and services,
some large companies such as Booking, Rastreator or Emagister have made this
service business their way and they're doing really well. Users come to these pages
to contrast what the best options in each case and these companies earn a
commission when the client closes purchase them or provides the data for that
contact.

 What is HTML?
 HTML stands for HyperText Markup Language (Hypertext Markup Language), refers
to markup language for developing web pages. It is a standard that serves as a
reference for the software that connects to the development of web pages in
different versions, defines a basic structure and code (called HTML) for defining
content of a web page, including text, images, videos , games, among others. It is a
standard by the World Wide Web Consortium (W3C) or WWW Consortium, an
organization dedicated to the standardization of almost all technologies related to
the web, especially in terms of writing and interpretation.

 Main HTML commands


 <HTML> ... </ HTML>: Indicates the beginning and end of an HTML file

 <HEAD> ... </ HEAD>: Indicates the beginning and end of a header (here
usually places the title).

 <TITLE> ... </ TITLE> Indicates the title.

 <BODY> ... </ BODY>: Indicates the beginning and end of the body of
the page.

 <P> ... </ P>: Indicates the beginning and end of a paragraph.

 <BR>: Allows you to skip a line (called line break).

 <Hn> ... <Hn>: For n between 1 and 6, make the enclosed text to appear as
a header (caption). It is recommended to use only 1.2 and 3.

 Types of letters:

o <B> ... </ B>: Negrita.

o <L> ... </ L>: Italics.

o <BLINK> ... </ BLINK>: Blinking.

o <STRONG> ... </ STRONG> overemphasized.

 <UL> ... </ UL>: Indicates start and end of an unordered list (points).
Among them, each item starts with <LI> and ends at the end of the line.
 <OL> ... </ OL>: Indicates start and end of an ordered list (numbers).
Among them, each item starts with <LI> and ends at the end of the line.
Example:

 <OL>
 <LI> First item
 <LI> Second item
 <UL>
 <LI> First subitem
 <LI> Second subitem
 </ UL>
 <LI> Third item
 </ OL>

 ¿Main aspects to design and develop a Web page?

 Define the idea for the website.

 Registering a domain name.

 Web hosting purchase.

 Choose a platform and build your website.

 Post, grow, monitor, improve.

Potrebbero piacerti anche