
Untitled
By: a guest on
May 7th, 2012 | syntax:
None | size: 0.65 KB | hits: 11 | expires: Never
Key/Value pairs separated in the markup. Is there any other way for better SEO?
<div id="container">
<div>
<ul>
<li>Size</li>
<li>etc...</li>
</ul>
</div>
<div>
<ul>
<li>10MB</li>
<li>etc...</li>
</ul>
</div>
</div>
<dl>
<dt>Size</dt>
<dd>2.63 MB</dd>
<dt>Views</dt>
<dd>34,412</dd>
<dt>Downloads</dt>
<dd>2,125</dd>
<dt>Likes</dt>
<dd>1.368</dd>
<dt>Category</dt>
<dd>Test</dd>
</dl>
dt, dd {
font-family:sans-serif;
}
dt {
float:left;
clear:left;
text-align:right;
width:50%;
color:#bbb;
}
dd {
float:left;
margin-left:3em;
color:#999
}