HTML Markup
HTML
is the language of the web. It stands for HyperText
Markup Language. It
describes the structure of a document, not it's
actual presentation.
As
such, it is a standard for the layout of web
pages on the Internet.
Here
are a few simple HTML tags: (Please not
that all tags are enclosed by < and >
brackets.
<!--comment-->
- Comment tag
<html>
</html> - Encloses the entire
document
<head>
</head> - Encloses the head of the
document
<meta>
- Provides information about the document
<title>
</title> - The title of the document
<body>
</body> - Encloses the body (text and
tags) of the HTML document.
Related Pages


