Accessibility
 
Home > Products > Dreamweaver > Support > Editing HTML in Dreamweaver
Dreamweaver Icon Macromedia Dreamweaver Support Center - Editing HTML in Dreamweaver
Head tags

The head section (surrounded by head tags) contains only the page title (surrounded by title tags) and programming scripts, such as JavaScript code that implements an image rollover in your page.

The text that you put between <title> and </title> will appear in the top title bar of the browser window. It will not appear on the page.

For example, the following HTML results in the page shown below:

<html>
<head>
	<title>Purcy the cat</title>
</head>

To Table of Contents Back to Previous document Forward to next document