HTML - 060216
HTML - 060216
Introduction
• HyperText Markup Language (HTML) is a
markup language used to display a text
document on the web.
• Markup language is a set of markup
tags.
• These documents are interpreted by web
browsers such as Internet Explorer,
Mozilla Firefox, Google Chrome, Safari,
Opera, etc.
© K.S. Mbise HTML Slide 2
HTML tags
• An HTML tag is a command placed
between angle brackets – a left
bracket (<) and a right bracket (>).
• Tags come in pairs, with text or a
graphic image located between the
opening and closing tags.
• Tags are what we use to structure an
HTML page.
© K.S. Mbise HTML Slide 3
HTML tags cont…
• E.g., the center tag is <center>.
• To stop centering something, we need
an ending or closing tag.
• Closing tags look exactly like opening
tags, except after the first < there is a
/.
• In other words, the closing tag for
center is </center>.
© K.S. Mbise HTML Slide 4
HTML tags cont…
• An HTML document has a definite
structure that must be specified to the
browser.
• The HTML's beginning and end must
be defined, as well as the document's
head and body.
& Ampersand