Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on May 7th, 2012  |  syntax: None  |  size: 0.65 KB  |  hits: 11  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. Key/Value pairs separated in the markup. Is there any other way for better SEO?
  2. <div id="container">
  3.   <div>
  4.     <ul>
  5.       <li>Size</li>
  6.       <li>etc...</li>
  7.     </ul>
  8.   </div>
  9.   <div>
  10.     <ul>
  11.       <li>10MB</li>
  12.       <li>etc...</li>
  13.     </ul>
  14.   </div>
  15. </div>
  16.        
  17. <dl>
  18.     <dt>Size</dt>
  19.     <dd>2.63 MB</dd>
  20.     <dt>Views</dt>
  21.     <dd>34,412</dd>
  22.     <dt>Downloads</dt>
  23.     <dd>2,125</dd>
  24.     <dt>Likes</dt>
  25.     <dd>1.368</dd>
  26.     <dt>Category</dt>
  27.     <dd>Test</dd>
  28. </dl>
  29.        
  30. dt, dd {
  31.     font-family:sans-serif;
  32. }
  33. dt {
  34.    float:left;
  35.    clear:left;  
  36.    text-align:right;
  37.    width:50%;
  38.    color:#bbb;
  39. }
  40. dd {
  41.    float:left;
  42.    margin-left:3em;
  43.    color:#999
  44. }