The head section is the sole location of the <title> tag. The title can exist nowhere else, and should be the first thing specified in our page after the basic structure has been created.
- <head>
- <title>Dudley Storey's Home Page on the Web</title>
- </head>
Always make the title full, unique and descriptive. If you were making a web page for a company, include the company name and the subject of the page itself in the <title>.
The one last line we will add in the <head> section of the document, is another method for telling the browser and server what kind of content is on the page. In XHTML, it looks like this:
- <meta http-equiv="content-type" content="text/html; charset=utf-8" />
In HTML5, it is a lot simpler:
- <meta charset="uft-8">
so we don't need the jQuery minimum length anymore:) cool!


