Created
February 5, 2019 02:43
-
-
Save planetoftheweb/6971ba0557d4b5f50e13418d98ce40ae to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<table class="table table-hover"> | |
<caption class="text-right h3"> | |
<b>Total:</b> | |
</caption> | |
<thead> | |
<tr> | |
<th scope="col"></th> | |
<th scope="col">Item</th> | |
<th scope="col" class="text-center">Qty</th> | |
<th scope="col" class="text-right">Price</th> | |
<th scope="col" class="text-right">Sub-total</th> | |
</tr> | |
</thead> | |
<tbody> | |
<tr> | |
<td class="text-center"> | |
<div class="btn-group" role="group" aria-label="Basic example"> | |
<button class="btn btn-info">+</button> | |
<button class="btn btn-outline-info">-</button> | |
</div> | |
</td> | |
<th scope="row"></th> | |
<td class="text-center"></td> | |
<td class="text-right"> | |
</td> | |
<td class="text-right"> | |
</td> | |
</tr> | |
</tbody> | |
</table> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment