Skip to content

Commit

Permalink
[e] (0) <hx> examples.
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.whatwg.org/webapps@3801 340c8d12-0b0e-0410-8428-c7bf67bfef74
  • Loading branch information
Hixie committed Sep 11, 2009
1 parent 8ec76a1 commit eb0e80d
Show file tree
Hide file tree
Showing 2 changed files with 68 additions and 0 deletions.
34 changes: 34 additions & 0 deletions index
Expand Up @@ -13143,6 +13143,40 @@ isn't his only passion. He also enjoys other pleasures.&lt;/p&gt;
rank, the <code><a href=#the-h1,-h2,-h3,-h4,-h5,-and-h6-elements>h6</a></code> element has the lowest rank, and two
elements with the same name have equal rank.</p>

<div class=example>

<p>These two snippets are equivalent:</p>

<pre>&lt;h1&gt;Let's call it a draw(ing surface)&lt;/h1&gt;
&lt;h2&gt;Diving in&lt;/h2&gt;
&lt;h2&gt;Simple shapes&lt;/h2&gt;
&lt;h2&gt;Canvas coordinates&lt;/h2&gt;
&lt;h3&gt;Canvas coordinates diagram&lt;/h3&gt;
&lt;h2&gt;Paths&lt;/h2&gt;</pre>

<pre>&lt;section&gt;
&lt;h1&gt;Let's call it a draw(ing surface)&lt;/h1&gt;
&lt;section&gt;
&lt;h1&gt;Diving in&lt;/h1&gt;
&lt;/section&gt;
&lt;section&gt;
&lt;h1&gt;Simple shapes&lt;/h1&gt;
&lt;/section&gt;
&lt;section&gt;
&lt;h1&gt;Canvas coordinates&lt;/h1&gt;
&lt;section&gt;
&lt;h1&gt;Canvas coordinates diagram&lt;/h1&gt;
&lt;/section&gt;
&lt;/section&gt;
&lt;section&gt;
&lt;h1&gt;Paths&lt;/h1&gt;
&lt;/section&gt;
&lt;/section&gt;</pre>

</div>




<h4 id=the-hgroup-element><span class=secno>4.4.7 </span>The <dfn><code>hgroup</code></dfn> element</h4>

Expand Down
34 changes: 34 additions & 0 deletions source
Expand Up @@ -14005,6 +14005,40 @@ isn't his only passion. He also enjoys other pleasures.&lt;/p>
rank, the <code>h6</code> element has the lowest rank, and two
elements with the same name have equal rank.</p>

<div class="example">

<p>These two snippets are equivalent:</p>

<pre>&lt;h1>Let's call it a draw(ing surface)&lt;/h1>
&lt;h2>Diving in&lt;/h2>
&lt;h2>Simple shapes&lt;/h2>
&lt;h2>Canvas coordinates&lt;/h2>
&lt;h3>Canvas coordinates diagram&lt;/h3>
&lt;h2>Paths&lt;/h2></pre>

<pre>&lt;section>
&lt;h1>Let's call it a draw(ing surface)&lt;/h1>
&lt;section>
&lt;h1>Diving in&lt;/h1>
&lt;/section>
&lt;section>
&lt;h1>Simple shapes&lt;/h1>
&lt;/section>
&lt;section>
&lt;h1>Canvas coordinates&lt;/h1>
&lt;section>
&lt;h1>Canvas coordinates diagram&lt;/h1>
&lt;/section>
&lt;/section>
&lt;section>
&lt;h1>Paths&lt;/h1>
&lt;/section>
&lt;/section></pre>

</div>




<h4>The <dfn><code>hgroup</code></dfn> element</h4>

Expand Down

0 comments on commit eb0e80d

Please sign in to comment.