UIkit Table
home
Run
screen_rotation
fullscreen
cloud_download
navigate_before
navigate_next
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>Uikit Tutorial!</title> <!-- UIkit CSS --> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/uikit/3.0.0-beta.35/css/uikit.min.css" /> <!-- UIkit JS --> <script src="https://cdnjs.cloudflare.com/ajax/libs/uikit/3.0.0-beta.35/js/uikit.min.js"></script> <script src="https://cdnjs.cloudflare.com/ajax/libs/uikit/3.0.0-beta.35/js/uikit-icons.min.js"></script> </head> <body> <div class="uk-section uk-section-muted"> <div class="uk-container"> <table class="uk-table uk-table-divider"> <thead> <tr> <th>Name</th> <th>Email</th> </tr> </thead> <tfoot> <tr> <td>Jhon</td> <td>jhon@example.com</td> </tr> </tfoot> <tbody> <tr> <td>Kelly</td> <td>kelly@example.com</td> </tr> </tbody> </table> </div> </div> </body> </html>
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>Uikit Tutorial!</title> <!-- UIkit CSS --> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/uikit/3.0.0-beta.35/css/uikit.min.css" /> <!-- UIkit JS --> <script src="https://cdnjs.cloudflare.com/ajax/libs/uikit/3.0.0-beta.35/js/uikit.min.js"></script> <script src="https://cdnjs.cloudflare.com/ajax/libs/uikit/3.0.0-beta.35/js/uikit-icons.min.js"></script> </head> <body> <div class="uk-section uk-section-muted"> <div class="uk-container"> <table class="uk-table uk-table-divider"> <thead> <tr> <th>Name</th> <th>Email</th> </tr> </thead> <tfoot> <tr> <td>Jhon</td> <td>jhon@example.com</td> </tr> </tfoot> <tbody> <tr> <td>Kelly</td> <td>kelly@example.com</td> </tr> </tbody> </table> </div> </div> </body> </html>
Copyrights@tutorialsplane.com