<section id = "productos">
<h3>Productos</h3>
<div class = "producto">
<label for = "remera">Remera</label>
<input type = "checkbox" id = "remera" name = "remera" value = "25.95" />
</div>
<div class = "producto">
<label for = "zapatos">Zapatos</label>
<input type = "checkbox" id = "zapatos" name = "zapatos" value = "48.75" />
</div>
<div class = "producto">
<label for = "lentes">Lentes</label>
<input type = "checkbox" name = "lentes" value = "22.30" />
</div>
</section>
<section id = "medidas">
<h3>Medidas</h3>
<label for = "uno">5.98</label>
<input type = "radio" id = "uno" name = "medida" value = "5.98" checked />
<label for = "dos">8.23</label>
<input type = "radio" id = "dos" name = "medida" value = "8.23" />
<label for = "tres">10.43</label>
<input type = "radio" id = "tres" name = "medida" value = "10.43" />
</section>
<span id = "resultado">Total: US$0.00</span>