Edit This Code
See Result
<h1>Calendar</h1> <h2>Table 1</h2> <table> <tbody><tr> <td> </td> <td><b>Monday</b></td> <td><b>Tuesday</b></td> <td><b>Wednesday</b></td> <td><b>Thursday</b></td> <td><b>Friday</b></td> </tr> <tr> <td><b>8:00-9:00</b></td> <td>Meet with Sam</td> <td> </td> <td> </td> <td> </td> <td> </td> </tr> <tr> <td><b>9:00-10:00</b></td> <td> </td> <td> </td> <td>Doctor Williams</td> <td>Sam again</td> <td>Leave for San Antonio</td> </tr> </tbody></table> <br> <table> <caption><h2>Table 2</h2></caption> <thead><tr> <th scope="col">Time</td> <th scope="col">Monday</th> <th scope="col">Tuesday</th> <th scope="col">Wednesday</th> <th scope="col">Thursday</th> <th scope="col">Friday</th> </tr> </thead><tr> <tbody><tr> <tr> <th scope="row">8:00-9:00</th> <td>Meet with Sam</td> <td> </td> <td> </td> <td> </td> <td> </td> </tr> <tr> <th scope="row">9:00-10:00</th> <td> </td> <td> </td> <td>Doctor Williams</td> <td>Sam again</td> <td>Leave for San Antonio</td> </tr> </tbody></table> <br />
Result
Check Accessibility
Code goes here