GpReset.CSS (Lv.0)
by ginpei
HTML
<h1>GpReset.css</h1>
<h2>What's this?</h2>
<p>The very simple and light CSS reset.</p>
<p>You need not to download, you can install into your memory.</p>
<h2>HTML Samples</h2>
<h3>Section</h3>
<section>
<header>This is a Header.</header>
<p>This is in a Section.</p>
<article>
<hgroup>
<h1>Heading Lv1</h1>
<h2>Heading Lv2</h2>
<h3>Heading Lv3</h3>
<h4>Heading Lv4</h4>
<h5>Heading Lv5</h5>
<h6>Heading Lv6</h6>
</hgroup>
<p>This is a Paragraph.</p>
</article>
<footer>This is a footer.</footer>
<aside>This is an aside content.</aside>
</section>
<h3>Contents</h3>
<p>This is a Paragraph.</p>
<p>This is a Paragraph.</p>
<p>This is a Paragraph.</p>
<pre>This is a
Pre-Formatted
text.</pre>
<pre>+--+--+
| | |
+--+--+
| | |
+--+--+</pre>
<figure>
<img src="" width="100" height="100" alt="" />
<figcaption>Figure and Fig-Caption</figcaption>
</figure>
<div>This is a Division with no meanings.</div>
<div>This is a Division with no meanings.</div>
<div>This is a Division with no meanings.</div>
<h3>List</h3>
<ol>
<li>Ordered list</li>
<li>Item</li>
<li>And nested:
<ol>
<li>Item</li>
<li>And more nested:
<ol>
<li>Item</li>
</ol>
</li>
</ol>
</li>
</ol>
<ul>
<li>Unordered list</li>
<li>Item</li>
<li>And nested:
<ul>
<li>Item</li>
<li>And more nested:
<ul>
<li>Item</li>
</ul>
</li>
</ul>
</li>
</ul>
<dl>
<dt>Definition List Title</dt>
<dd>Definition List Data</dd>
<dt>Definition List Title</dt>
<dd>Definition List Data</dd>
<dt>Definition List Title</dt>
<dd>Definition List Data</dd>
</dl>
<h3>Table</h3>
<table>
<caption>Table Caption</caption>
<thead>
<tr>
<th>Table</th>
<th>Header</th>
<th>Cell</th>
</tr>
</thead>
<tbody>
<tr>
<td>Table</td>
<td>Data</td>
<td>Cell</td>
</tr>
<tr>
<td>Table</td>
...