Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="utf-8">
- <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
- <link rel=stylesheet href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.0.0-alpha.6/css/bootstrap.css">
- <link rel=stylesheet href="https://cdn.datatables.net/1.10.13/css/dataTables.bootstrap4.min.css">
- </head>
- <body>
- <div class="container">
- <h1>Spaced Repetition</h1>
- <table id="example" class="table table-striped table-bordered dt-responsive nowrap" cellspacing="0" width="100%">
- <thead>
- <tr>
- <th>#</th>
- <th>Title</th>
- <th>Past Reviews</th>
- <th>Next Review</th>
- <th>Links</th>
- </tr>
- </thead>
- <tbody>
- <tr>
- <th scope="row">6</th>
- <td>xx1</td>
- <td>07-Mar-2017 | 07-Mar-2017 | </td>
- <td>07-Apr-2017</td>
- <td>link1 | link2 | </td>
- </tr>
- <tr>
- <th scope="row">6</th>
- <td>ff1</td>
- <td>07-Mar-2017 | 07-Mar-2017 | </td>
- <td>07-Apr-2017</td>
- <td>link1 | link2 | </td>
- </tr>
- </tbody>
- </table>
- </div>
- <script src="https://code.jquery.com/jquery-1.12.4.js">
- </script>
- <script src="https://cdn.datatables.net/1.10.13/js/jquery.dataTables.min.js">
- </script>
- <script src="https://cdn.datatables.net/1.10.13/js/dataTables.bootstrap4.min.js">
- </script>
- <script>
- $(document).ready(function() {
- $('#example').DataTable();
- });
- </script>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement