24 lines
542 B
HTML
24 lines
542 B
HTML
<div id="carro" class="ui modal">
|
|
<i class="close icon"></i>
|
|
<div class="header">
|
|
CARRITO
|
|
</div>
|
|
<form>
|
|
<div class="content productos">
|
|
<table class="ui table">
|
|
<tbody></tbody>
|
|
<tfoot class="total">
|
|
<tr>
|
|
<td colspan="3">TOTAL</td>
|
|
<td class="precio">$ <span class="valor">0</span></td>
|
|
<td></td>
|
|
</tr>
|
|
</tfoot>
|
|
</table>
|
|
</div>
|
|
<div class="content">
|
|
<button class="ui button">COMPRAR</button>
|
|
</div>
|
|
</form>
|
|
</div>
|