Text and Images from Slide
(g + h) Sample Table Code
- <table border="1" summary="Lists names and favorite colors">
- <thead>
- <tr>
- <th scope="col">Name</th>
- <th scope="col">Favorite Color</th>
- </tr>
- </thead>
- <tbody>
- <tr>
- <td>Pat Smith</td>
- <td>Red</td>
- </tr>
- <tr>
- <td>Tyler Zipper</td>
- <td>Green</td>
- </tr>
- </tbody>
- </table>