head

Purpose

Information such as the title and other metadata that is not document content. The contained title element is required and it must be the first child of the head element.

Contained by

Contains

Attribute groups

Example

<?xml version="1.0" encoding="UTF-8"?>
<html xmlns="http://www.w3.org/2002/06/xhtml2"
  xmlns:mcs="http://www.volantis.com/xmlns/2006/01/xdime/mcs">
  <head>
    <title>html</title>
    <meta property="mcs:cache-scope">optimistic</meta>
    <meta property="mcs:max-age">180</meta>
  </head>
  <body>
    <h3> Hello! </h3>
  </body>
</html>

Related topics