| Tags: < head > The HEAD tag may contain information for search engines in the form of meta tags. It also may contain scripts, style, tittle, meta tags, link and object elements ... or as simple as < HEAD >< /HEAD >
Contents of the HEAD tag are not viewed in the page unless the closing tag is omitted. There is not much to say about the head tag itself.
Sample: (Some possible contents between the head tags. Some of which will be covered later.)
< html >
< head >
< title >page tittle< /title >
< meta name="resource-type" content="document" >
< meta http-equiv="author" content="Spider Enterprises" >
< meta http-equiv="keywords" content="build,HTML,websites,pages,design,..." >
< meta http-equiv="distribution" content="Global" >
< style type=text/css>body {
scrollbar-face-color: #ccffff
}
< /style >
< script language="Javascript" >
function getime() {
var date= new Date();
var h = date.getHours();
setTimeout("getime()",100)
}
< /script >
< /head >
< BODY >
< /BODY >
< /HTML >
|

* just a note here:
It does not seem to matter if any of the tags in the html code are in lowercase or uppercase. But items like links to files must match the case of the file.
For example:
If your file on the server is a Picture called pic4.jpg and your link is to a pic4.JPG it may not be found by your browser.
|