go back


<table> --table
<tr> -- table row
<th> -- table header
<td> -- table data

code: (html)
<link rel="stylesheet" href="style.css" />                                       
<table>                                                                          
<tr>                                                                             
<th>Monday</th><th>Tuesday</th><th>Wednesday</th><th>Thursday</th><th>Friday</th>
</tr>                                                                            
<tr>                                                                             
<td>Closed</td><td>Open</td><td>Closed</td><td>Open</td><td>Closed</td>          
</tr>                                                                            
</table>                                                                         

code: (style.css)
table {                                        
font-family: "Arial Black", Gadget, sans-serif;
}                                              
th, td {                                       
border: 1px solid #000000;                     
}                                              

in action:
MondayTuesdayWednesdayThursdayFriday
ClosedOpenClosedOpenClosed