html-author/Overview.html 1.61 Added some description of the head eleme

Added some description of the head element

DOM Interface
http://people.w3.org/mike/diffs/html5/html-author/Overview.1.61.html#dom-interface-0
4.1.7 Embedded content
http://people.w3.org/mike/diffs/html5/html-author/Overview.1.61.html#embedded-content

http://people.w3.org/mike/diffs/html5/html-author/Overview.diff.html
http://dev.w3.org/cvsweb/html5/html-author/Overview.html?r1=1.60&r2=1.61&f=h

===================================================================
RCS file: /sources/public/html5/html-author/Overview.html,v
retrieving revision 1.60
retrieving revision 1.61
diff -u -d -r1.60 -r1.61
--- Overview.html 9 Mar 2009 15:22:14 -0000 1.60
+++ Overview.html 9 Mar 2009 16:00:30 -0000 1.61
@@ -46,13 +46,13 @@
  .big-issue, .XXX { color: #E50000; background: white; border: solid red; padding: 0.5em; margin: 1em 0; }
  .big-issue > :first-child, .XXX > :first-child { margin-top: 0; }
  p .big-issue, p .XXX { line-height: 3em; }
- 
+
  dfn { font-style:normal; font-weight:bold }
  code { color:orangered }
  code :link, code :visited { color:inherit }
  pre code { color:inherit }
  pre mark, pre strong { background: yellow; font-weight: normal; }
- 
+
  .case-insensitive:hover { text-transform: lowercase; }
  .case-insensitive.lower:hover { text-transform: uppercase; }
  </style>
@@ -1242,6 +1242,42 @@
    </div>
   </div>
  </div>
+ 
+ <p>The <code><a href="#the-head-element">head</a></code> element is the container for the document’s
+    metadata. Metadata is information about the document itself, such as
+    it's title, author. Scripts and stylesheets may also be included
+    within the <code><a href="#the-head-element">head</a></code> element. Every document must have a
+    <code><a href="#the-head-element">head</a></code> element.</p>
+
+ <p>The following examples illustrate the typical usage of the
+    <code><a href="#the-head-element">head</a></code> element in HTML and XHTML.</p>
+
+ <div class="example html">
+  <p>HTML Example</p>
+  <pre>&lt;!DOCTYPE html&gt;
+&lt;html&gt;
+<strong><a href="#the-head-element">&lt;head&gt;</a></strong>
+  &lt;title&gt;Example&lt;/title&gt;
+<strong><a href="#the-head-element">&lt;/head&gt;</a></strong>
+&lt;body&gt;
+  &lt;h1&gt;Document&lt;/h1&gt;
+&lt;/body&gt;
+&lt;/html&gt;
+</pre>
+ </div>
+
+ <div class="example xhtml">
+  <p>XHTML Example</p>
+  <pre>&lt;html xmlns="http://www.w3.org/1999/xhtml"&gt;
+&lt;head&gt;
+  &lt;title&gt;Example&lt;/title&gt;
+&lt;/head&gt;
+<strong><a href="#the-body-element">&lt;body&gt;</a></strong>
+  &lt;h1&gt;Document&lt;/h1&gt;
+<strong><a href="#the-body-element">&lt;/body&gt;</a></strong>
+&lt;/html&gt;
+</pre>
+ </div>
 
  <!-- The title Element -->
  <div class="element">

Index: Overview.src.html
===================================================================
RCS file: /sources/public/html5/html-author/Overview.src.html,v
retrieving revision 1.62
retrieving revision 1.63
diff -u -d -r1.62 -r1.63
--- Overview.src.html 9 Mar 2009 15:56:41 -0000 1.62
+++ Overview.src.html 9 Mar 2009 16:00:31 -0000 1.63
@@ -1060,6 +1060,44 @@
    </div>
   </div>
  </div>
+ 
+ <p>The <code>head</code> element is the container for the document’s
+    metadata. Metadata is information about the document itself, such as
+    it's title, author. Scripts and stylesheets may also be included
+    within the <code>head</code> element. Every document must have a
+    <code>head</code> element.</p>
+
+ <p>The following examples illustrate the typical usage of the
+    <code>head</code> element in HTML and XHTML.</p>
+
+ <div class="example html">
+  <p>HTML Example</p>
+  <pre>
+&lt;!DOCTYPE html&gt;
+&lt;html&gt;
+<strong>&lt;head&gt;</strong>
+  &lt;title&gt;Example&lt;/title&gt;
+<strong>&lt;/head&gt;</strong>
+&lt;body&gt;
+  &lt;h1&gt;Document&lt;/h1&gt;
+&lt;/body&gt;
+&lt;/html&gt;
+</pre>
+ </div>
+
+ <div class="example xhtml">
+  <p>XHTML Example</p>
+  <pre>
+&lt;html xmlns="http://www.w3.org/1999/xhtml"&gt;
+&lt;head&gt;
+  &lt;title&gt;Example&lt;/title&gt;
+&lt;/head&gt;
+<strong>&lt;body&gt;</strong>
+  &lt;h1&gt;Document&lt;/h1&gt;
+<strong>&lt;/body&gt;</strong>
+&lt;/html&gt;
+</pre>
+ </div>
 
  <!-- The title Element -->
  <div class="element">

Received on Monday, 9 March 2009 16:01:46 UTC