Head has all the information of the file which isn't in the body (what you see in the window). That is usually the title, but can also have meta-data, CSS class' declarations, Javascript declarations, etc.
<head> is placed before <body>:
code:
<html>
<head>
</head>
<body>
</body>
</html>