Skip to content

Instantly share code, notes, and snippets.

@clayanNEU
Created May 5, 2020 23:15
Show Gist options
  • Save clayanNEU/ed531f1894b23f7dac118caaf34e472d to your computer and use it in GitHub Desktop.
Save clayanNEU/ed531f1894b23f7dac118caaf34e472d to your computer and use it in GitHub Desktop.
Table
<table class="styled">
<tr>
<!-- table header -->
<th>Bird</th>
<th>Color</th>
<th>Diet</th>
<th>Photo</th>
</tr>
<tr>
<!-- td stands for table data -->
<td>American Goldfinch</td>
<td>yellow</td>
<td>Mostly seeds.</td>
<td><img src="https://s3-us-west-2.amazonaws.com/s.cdpn.io/10558/american-goldfinch.jpg" alt="american-goldfinch" width="360" height="261" ></td>
</tr>
<tr>
<!-- Other bird content -->
</tr>
</table>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment