Advertisement
Guest User

my html

a guest
Sep 26th, 2016
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.72 KB | None | 0 0
  1. <html>
  2.  
  3. <head>
  4.     <!-- Latest compiled and minified CSS -->
  5.     <link rel="stylesheet" href="http://netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap.min.css">
  6.     <!-- Latest compiled and minified JavaScript -->
  7.     <script src="http://code.jquery.com/jquery.min.js"></script>
  8.     <script src="http://netdna.bootstrapcdn.com/bootstrap/3.0.0/js/bootstrap.min.js"></script>
  9.     <script src="email.js"></script>
  10.  
  11.     <link rel="stylesheet" href="email.css">
  12. </head>
  13.  
  14. <body>
  15.  
  16. <h1>Email Inbox</h1>
  17.  
  18. <table class="table table-hover" id="inbox">
  19.     <thead>
  20.     <tr class="active">
  21.         <th>Sender</th>
  22.         <th>Subject</th>
  23.         <th>Received</th></tr>
  24.     </thead>
  25.  
  26.     <tbody>
  27.         <!-- where the emails go -->
  28.     </tbody>
  29.    
  30. </table>
  31.  
  32. </body>
  33. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement