Advertisement
Guest User

wp

a guest
Nov 27th, 2012
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.50 KB | None | 0 0
  1. <html><head>
  2. <style type="text/css">
  3. /* Styling for the title (Month and Year) of the calendar */
  4. /* Styling for the footer */
  5. div.footer {
  6. font: large Verdana, Arial, Helvetica, sans-serif;
  7. text-align: center;
  8. }
  9. /* Styling for the overall table */
  10. table {
  11. font: 100% Verdana, Arial, Helvetica, sans-serif;
  12. table-layout: fixed;
  13. border-collapse: collapse;
  14. width: 100%;
  15. }
  16. /* Styling for the column headers (days of the week) */
  17. th {
  18. padding: 0 0.5em;
  19. text-align: center;
  20. background-color:red;
  21. color:white;
  22. }
  23. /* Styling for the individual cells (days) */
  24. td {
  25. font: 50% Verdana, Arial, Helvetica, sans-serif;
  26. padding: 0.25em 0.25em;
  27.  
  28. height: 200px;
  29. text-align: left;
  30. vertical-align: top;
  31. }
  32. /* Styling for the date numbers */
  33. .date {
  34. font: 200% Verdana, Arial, Helvetica, sans-serif;
  35. padding: 0.25em 0.25em;
  36. text-align: left;
  37. vertical-align: top;
  38. }
  39. /* Class for individual days (coming in future release) */
  40. .sun {
  41. color:red;
  42. }
  43. /* Hide the month element (coming in future release) */
  44. th.month {
  45. visibility: hidden;
  46. display:none;
  47. }
  48.  
  49. </style>
  50. </head>
  51. <body>
  52. <table border="1">
  53. <col width="100">
  54. <tr><th>Sunday</th><th>Monday</th><th>Tuesday</th><th>Wednesday</th><th>Thursday</th><th>Friday</th><th>Saturday</th></tr>
  55. <tr><td><span class="date"></span></td>
  56. <td><span class="date"><b>8:00am</b><strong> Yoga </strong>Patti Ehmen
  57.  
  58. <b>9:30am</b><strong> Boot Camp </strong>LaJeanna Ray
  59.  
  60. <b>5:30pm</b><strong> Zumba</strong>  Mira Poole
  61.  
  62. <td><span class="date"><b>8:00am</b>  <strong> Metabolic Resistance Training </strong> LaJeanna Ray
  63.  
  64. <b>9:15am</b><strong> SilverSneakers </strong>LaJeanna Ray
  65.  
  66. <b>5:30pm</b><strong> Kickboxing </strong> Caryn Stephens</span></td>
  67.  
  68. <td><span class="date"><b>8:00am</b><strong> Pilates </strong>Patti Ehmen
  69.  
  70. <b>9:30am</b><strong> Boot Camp </strong>LaJeanna Ray
  71.  
  72. <b>5:30pm</b><strong> Zumba</strong>  Jill Hatchett
  73. </span></td><td><span class="date"><b>8:00am</b>  <strong> Metabolic Resistance Training </strong> LaJeanna Ray
  74.  
  75. <b>9:15am</b><strong> SilverSneakers </strong>LaJeanna Ray
  76.  
  77. <b>5:30pm</b><strong> BodySculpt </strong> Caryn Stephens</span></td></span></td><td><span class="date"><b>8:30am</b><strong> Zumba Gold </strong> Caryn Stephens</span></td><td><span class="date"><b>8:30am</b><strong> Zumba</strong> Mira/Jill alternate</span></td></tr>
  78.  
  79. </table>
  80. <p>
  81. </body></html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement