Dynamicdeezign, documentation of html and css
The guide to create your Web site on Internet
 

<head> : document head
The HEAD element contains information about the current document, such as its title, keywords that may be useful to search engines, and other data that is not considered document content. User agents do not generally render elements that appear in the HEAD as content. They may, however, make information in the HEAD available to users through other mechanisms.


Example

ALL HTML - Le portail des Webmasters

<html>
<head>
    <title>docuent title</title>
    <meta name="keywords" lang="en-us" content="hotel,holiday,reservation">
    <meta name="description" content="short description of your web site.">
    <script src="your_script.js" type="text/javascript"></script>
    <link rel="stylesheet" type="text/css" href="file.css">
</head>
  <body>
  the body document
  </body>
</html>


see HTML Document Structure for the HEAD tag details




For complete reference see html reference at W3C
PI..19   PI..20   PI..21   PI..22   PI..23   PI..24   PI..25   PI..26   PI..27   PI..28   PI..29   PI..30   PI..31   PI..32  
PI..33   PI..34   PI..35   PI..36   PI..37   PI..38   PI..39   PI..40   PI..41   PI..42   PI..43   PI..44   PI..45   PI..46  
PI..47   PI..48   PI..49   PI..50   PI..51   PI..52   PI..53   PI..54   PI..55   PI..56   PI..57   PI..58   PI..59   PI..60  
PI..61   PI..62   PI..63   PI..64   PI..65   PJ..1   PJ..2   PJ..3   PJ..4   PJ..5   PK..1   PK..2   PK..3   PL..1