) is a markup language used for creating web pages that can be displayed in a browser (or navigator).
HTML is a text format designed to be read and edited by people using a simple text editor. However writing and editing pages in this way calls solid knowledge of HTML and time consuming. Graphic editors (WYSIWYG type) such as Macromedia Dreamweaver, Adobe GoLive and Microsoft FrontPage allow web pages to be treated like Word documents, but notes that these programs generate an HTML that is often of poor quality.
HTML can be generated directly using encryption technology from the server such as PHP, JSP or ASP. Many systems as content management, wiki sites and web forums generates HTML pages.
HTML is also used in e-mail. Most applications of e-mail using an HTML editor for the composition incorporated e-mails and an engine submitting e-mails of this type. Using e-mails HTML is a controversial topic and many mailing lists intentionally blocking them.
Any type HTML file has a certain structure code - are sequences of code that must appear in any file of this type.
Thus, identify:
• The label <html> opening of the document
• A header - defined by the label <head> ... </ head> (which contains the title and definition between <title> and </ title> )
• An area called the body of the document (marked by labels <body> ... </ body> )
• - The label closing document (marked by </ html> ).
It is noticed that the HTML tags (known as tags) are in parentheses (or less than sign and higher). Also, some tags have labels opening - marked by the name of instruction (eg <body>) and labels marked by close precedarea name sign slash (example: </ body>). In this way it looks is formatata section of the label - or field action.
The only area accesible by Internet browser is the area corps document.
No code will be added after the document body (after the label </ body>). It should end with the code sequence:
</ body>
</ html>
SIMPLE CODE FOR A BASIC HTML PAGE
<html>
<head>
<title> YOUR PAGE TITLE </title>
</head>
<body>
... YOUR PAGE CONTENT ...
</body>
</html>