|
|
 |
| What
is HTML |
Hyper textual markup language is a markup
language that can be use to display information's on the internet
via the world wide web. HTML files are text files. they contain only
two types of items: commands (also called tags or markup) and
content. you can edit an html file with any text editor. i tend to
use Notepad for small, quick edits and an HTML-aware text editor for
larger files, such as FrontPage or DreamWeaver, because these
editors color-code tags, insert end tags automatically, provides
predictive syntax help via intelligence or tag/attributes lists, and
provide many other helpful editing features.
|
| Tags
and Attribute syntax |
A tag is an embedded
command that marks a portion of text for special treatment by the
web browser e.g. a <P> tag contains a simple paragraph. An end
tag simply marks the end of the portion of the document influence by
the tag, so an end paragraph tag looks like this </P>.
Tags can contain one main command and an unlimited
numbers of associated values called attributes. each attributes has
a name and a value. here is an example :
< font face="Arial"
size=12>
the <font> tag has two attributes -face and size each of which
has a value.
|
|
 |
 |
|
|