HTML example:
<!-- START: Table --> <table class="nk-table"> <thead> <tr> <th colspan="3">Skills Table</th> </tr> </thead> <tbody> <tr> <th>Name</th> <th>Game Line</th> <th class="text-xs-center">Percent</th> </tr> <tr> <td>Duke</td> <td>Top</td> <td class="text-xs-center"><strong>85</strong></td> </tr> <tr> <td>Bandi</td> <td>Jungle</td> <td class="text-xs-center"><strong>75</strong></td> </tr> <tr> <td>Faker</td> <td>Mid</td> <td class="text-xs-center"><strong>80</strong></td> </tr> <tr> <td>Bang</td> <td>ADC</td> <td class="text-xs-center"><strong>99</strong></td> </tr> <tr> <td>Wolf</td> <td>Support</td> <td class="text-xs-center"><strong>80</strong></td> </tr> </tbody> </table> <!-- END: Table -->