appointments.html 840 B

1234567891011121314151617181920212223242526272829303132
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <title>Appointment Table</title>
  7. <script src="../javascripts/appointments.js" async></script>
  8. <link rel="stylesheet" href="../stylesheets/appointments.css">
  9. </head>
  10. <body>
  11. <div class="container">
  12. <h2>Appointments</h2>
  13. <table>
  14. <thead>
  15. <tr>
  16. <th>Title</th>
  17. <th>Description</th>
  18. <th>Due Date</th>
  19. <th>Place</th>
  20. <th>Time Span</th>
  21. <th>Participants</th>
  22. <th>Edit</th>
  23. <th>Delete</th>
  24. </tr>
  25. </thead>
  26. <tbody id="appointment-table-body">
  27. <!-- Data will be inserted here via JavaScript -->
  28. </tbody>
  29. </table>
  30. </div>
  31. </body>
  32. </html>