Advertisement
Guest User

Untitled

a guest
Nov 10th, 2019
112
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.37 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3.     <head>
  4.         <title>Stylish Schedule Assignment</title>
  5.         <style>
  6.             table {
  7.                 border:solid;
  8.                 border-color:#2A2A2A;
  9.                 color:#000000;
  10.                 background-color:#3A3A3A;
  11.                 margin:5px;
  12.             }
  13.             .red16 {
  14.                 color:#FF0000;
  15.                 font-size:16px;
  16.             }
  17.  
  18.             .blue16 {
  19.                 color:#0000FF;
  20.                 font-size:16px;
  21.             }
  22.  
  23.             .green18 {
  24.             color:#00FF00;
  25.             font-size:18px;
  26.             }
  27.  
  28.             .whiteback {
  29.             background-color:#FFFFFF;
  30.             }
  31.  
  32.             td {
  33.                 background-color:#7A7A7A;
  34.             }
  35.  
  36.             th {
  37.             background-color:#FFFFFF;
  38.             }
  39.  
  40.             tr.whiteback {
  41.             background-color:#FFFFFF;
  42.             }
  43.         </style>
  44.     </head>
  45.     <body>
  46.         <table>
  47.             <caption class="whiteback">Schedule</caption>
  48.             <tr>
  49.                 <th>Blocks</th>
  50.                 <td>A block</td>
  51.                 <td>B block</td>
  52.                 <td>C block</td>
  53.                 <td>D block</td>
  54.             </tr>
  55.             <tr>
  56.                 <th>Class</th>
  57.                 <td>Vocational School</td>
  58.                 <td>Vocational School</td>
  59.                 <td>Online Course</td>
  60.                 <td>Creative Writing</td>
  61.             </tr>
  62.             <tr>
  63.                 <th>Grade</th>
  64.                 <td class="blue16">89</td>
  65.                 <td class="blue16">89</td>
  66.                 <td class="green18">94</td>
  67.                 <td class="red16">79</td>
  68.             </tr>
  69.             <tr class="whiteback">
  70.                 <th>Class times</th>
  71.                 <td class="whiteback" colspan="2" style="text-align:center;">7:45 - 10:15</td>
  72.                 <td>10:45 - 12:00</td>
  73.                 <td>12:00 - 1:15</td>
  74.             </tr>
  75.         </table>
  76.     </body>
  77. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement