Editing HTML in Dreamweaver > Understanding basic HTML tags > Head tags

 

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>