7. The "head" and "title" tags

The head tags are used to indicate material that is about your document, but is not meant to appear within your document.

There are several kinds of information you can include in the head section of your document, but for now we'll just use the <title> tags. Between the title tags we'll place, unsurprisingly, the title of the document. Where does this title appear? Not within the browser window. Instead, the head tags appear on top bar of the browser, above the toolbars and menus. It is the title of the page not the document.

<html>

<head>
   <title>HTML, An Introduction</title>
</head>

An Introduction to Hypertext Markup Language

TUTORIAL DESCRIPTION
HTML is the basic language of the World Wide Web. If you are interested in creating webpages, HTML is the first thing you should learn. In this tutorial, you will
learn what HTML stands for,
learn some basic tags, and
see an example of how a webpage would be encoded with HTML.

SOME EFFECTS OF HTML TAGS
Making text bold or italicized.
Changing the size of text.
Linking one document to another.
Creating numbered and non-numbered lists.

PREREQUISITES
You should have had some experience browsing the web, as well as some general experience with computers. Additionally, you should know how to save and retrieve documents on a computer.

FURTHER READING
There are many other html tutorials listed at Yahoo.

</html>

What would this document look like in a web browser so far?



NEXT: >>

Page 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18