Home
Programming
AspectJ   Basic   C   C++   C#   Eiffel   Java   JavaScript   Pascal   PHP   Python   Rexx   Ruby   Scriptol   Tcl
Markup
HTML   XML   XAML   XUL
Query
SQL

HTML - Language of Web Pages

HTML, the hypertext markup language is a subset of SGML, (invented by IBM in 1969) defined by the W3C consortium. It is a document description language, that uses tags for properties. This is the format recognized by web browsers.
DHTML, dynamic HTML, is the combination of HTML and JavaScript. The CSS, cascading style sheet, adds the style sheet feature of word processor to HTML.

Features

- Tag based, uses < > for delimiters.
- Unrecognized statements are ignored.
- Unlimited embedding of constructs.

Why to use HTML?

Writing web pages, but is also a standard format for any documents displayable locally by a web browser or a recent word processor.

See also

HTML Tools and Sites

Sample code

Hello World
<html>
<head>
  <title>Html</title>
  <link rel="stylesheet" type="text/css"          href="scriptol.css">
</head>
<body>
    Hello World!
</body>
</html>
Home