Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions Topics/03. HTML-Tables/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@
- Each row has one or more columns
- Tables are comprised of several core tags:
- `<table></table>`: begin/end table definition
- `<th></th>`: create a table heading
- `<tr></tr>`: create a table row
- `<td></td>`: create tabular data (cell)
- Tables should not be used for layout
Expand All @@ -57,6 +58,10 @@

```html
<table cellspacing="0" cellpadding="5">
<tr>
<th>Image></td>
<th>Presentation</td>
</tr>
<tr>
<td><img src="ppt.gif"></td>
<td><a href="lecture1.ppt">Lecture 1</a></td>
Expand Down