Skip to content

Added table headings to basic table information #14

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
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