What\'s the difference between HEAD tags and BODY tags?
most HTML books only \'briefly\' mentions and
tags...but they
The browser will process what's in the to show the
accurately.
The holds stuff like what character set your page uses, when to refresh, external sheets or scripts you may want to include, and information about your page.
The holds only display-oriented stuff, usually HTML based.
It's important to keep the model (i.e. the information) and the view (i.e. the HTML) separate. Why? Later, you might want to update a style, and you don't want to chase it down through all of your HTML, each time it happens. Better to do it at one place for the whole document, in the .