Advertisement
x_ammar

Untitled

Mar 10th, 2017
223
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 2.07 KB | None | 0 0
  1. <!DOCTYPE html>
  2.     <html lang="en">
  3.    
  4.     <head>
  5.         <meta charset="utf-8">
  6.         <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
  7.         <link rel=stylesheet href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.0.0-alpha.6/css/bootstrap.css">
  8.         <link rel=stylesheet href="https://cdn.datatables.net/1.10.13/css/dataTables.bootstrap4.min.css">
  9.     </head>
  10.    
  11.     <body>
  12.         <div class="container">
  13.             <h1>Spaced Repetition</h1>
  14.             <table id="example" class="table table-striped table-bordered dt-responsive nowrap" cellspacing="0" width="100%">
  15.                 <thead>
  16.                     <tr>
  17.                         <th>#</th>
  18.                         <th>Title</th>
  19.                         <th>Past Reviews</th>
  20.                         <th>Next Review</th>
  21.                         <th>Links</th>
  22.                     </tr>
  23.                 </thead>
  24.                 <tbody>
  25.                     <tr>
  26.                         <th scope="row">6</th>
  27.                         <td>xx1</td>
  28.                         <td>07-Mar-2017 | 07-Mar-2017 | </td>
  29.                         <td>07-Apr-2017</td>
  30.                         <td>link1 | link2 | </td>
  31.                     </tr>
  32.                     <tr>
  33.                         <th scope="row">6</th>
  34.                         <td>ff1</td>
  35.                         <td>07-Mar-2017 | 07-Mar-2017 | </td>
  36.                         <td>07-Apr-2017</td>
  37.                         <td>link1 | link2 | </td>
  38.                     </tr>
  39.                 </tbody>
  40.             </table>
  41.         </div>
  42.         <script src="https://code.jquery.com/jquery-1.12.4.js">
  43.         </script>
  44.         <script src="https://cdn.datatables.net/1.10.13/js/jquery.dataTables.min.js">
  45.         </script>
  46.         <script src="https://cdn.datatables.net/1.10.13/js/dataTables.bootstrap4.min.js">
  47.         </script>
  48.         <script>
  49.             $(document).ready(function() {
  50.                 $('#example').DataTable();
  51.             });
  52.         </script>
  53.     </body>
  54.     </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement