HTML is the language for describing hypertext, ie, structured text with links to other related documents, and multimedia (images, sounds ...). It is the language used to present information on the Internet.
HTML: HyperText Markup Language: A set of styles (indicated by labels or tags) that define the components of a web document.
To create HTML documents only need a processor text. HTML documents are plain text format (also known as ASCII). The word processor is used to write the document in HTML, which would later be interpreted by the browser (if the document is saved in format: text-only).
The text has two parts, the information content and the set of HTML tags, which determine the final presentation style and can be read by a client program.
- WORKING METHOD
- With the word processor creates a file with html. There are programs that
- automate this process (HTML editors), but should begin to do it manually to understand HTML.
- HTML language uses tags (tags) to tell the browser how to display text. The labels are made of characters stuck between
A WWW browser (or client program) allows access to Internet World Wide Web pages. The client program allows you to view a page before loading it onto a server. Thus, we see that the changes we do on the page are correct.
signs \u0026lt;>
\u0026lt;/>.
Example:
\u0026lt;title>
to open and
\u0026lt;/ title>
to close.
HTML document structure
.
header, delimited by \u0026lt;head>
and \u0026lt;/ head> , which defines different values \u200b\u200bfor the whole document.
body, delimited by
\u0026lt;body> and \u0026lt;/ body>
where information in the document resides.
The basic structure looks like this:
\u0026lt;html> \u0026lt;head>
\u0026lt;title> Document Title \u0026lt;/ title>
\u0026lt;/ head> \u0026lt;body>
Document Text \u0026lt;/ body>
\u0026lt;/ html>
title
element specifies the title of an HTML document. This title does not appear in the document, but serves as the title of the program window as the sample. mailxmail.com
0 comments:
Post a Comment