SSS

by wizviper

HTML

<title>Screen Schedule</title>
<h1>
Summer Screen Schedule
</h1>
<div id="table">
<table>
<tr> 
<td>Monday</td>
<td>Tuesday</td>
<td>Wednesday</td>
<td>Thursday</td>
<td>Friday</td>
<td>Saturday</td>
<td>Sunday</td>
</tr>
<tr>
<td>50mins and 50mins</td>
<td>50mins and 50mins</td>
<td>50mins and 50mins</td>
<td>50mins and 50mins</td>
<td>50mins and 50mins</td>
<td>70mins and 60mins*</td>
<td>70mins and 60mins*</td>
</tr>
</table>
</div>
<p>*Times can be a little flexible, ex. 80mins and 40mins.
10 minutes before time is up, a warning is given. If, by those 10 minutes user is not shutting down or off, screens are taken away for that day. If user continues to play, screens are taken away for the week.</p>

CSS

h1 {
 text-align:center; 
 font-size:45px;
 color:yellow;
 font-family:sans-serif;
}
* {
 background-color:#e1e4e6; 
  
}

td {
  border:solid #6681D1 
  
}

table {
  border:solid #6681D1
  
}

p {
  font-size:18px;
  text-align:center;
  color:#1FDE7B;
  font-family:cursive;
}