The code below I got from j14.com and I want to learn how they do the image bars on the polls because I’m trying to make polls for my site. Can someone please explain in really plain English for someone who doesn’t know much about php (I have a little bit of programming experience, but don’t assume I know anything!). Explain it line by line so I can really understand what all of the code does. If I could understand it that would really help me.
<ol class=“results”>
<li>
<h3>teen mom</h3>
<div class=“result”>
<div class=“bar”><div class=“percentage” style=“width: 100%”></div></div>
<div class=“numbers”>100% (1)</div>
<div style=“clear: both”></div>
</div>
</li>
<li>
<h3>jersey shore</h3>
<div class=“result”>
<div class=“bar”><div class=“percentage” style=“width: 0%”></div></div>
<div class=“numbers”>0% (0)</div>
<div style=“clear: both”></div>
</div>
</li>
<li>
<h3>real world new orlamds</h3>
<div class=“result”>
<div class=“bar”><div class=“percentage” style=“width: 0%”></div></div>
<div class=“numbers”>0% (0)</div>
<div style=“clear: both”></div>
</div>
</li>
</ol>