SlideShare a Scribd company logo
HTMLTABLE
COURSE INSTRUCTOR: Mrs. Raya Idrissa
Email: r.idrisa@gmail.com
TheStateUniversityOfZanzibar
1
INF 003: Website Design and Development
Simple HTMLTables
• Tables are defined with the <table> tag.
• A table is divided into rows (with the <tr> tag)
• Each row is divided into data cells (with the <td> or <th>
tag).
• <th> tag used to define header information in a table.
• td stands for "table data," and holds the content of a data cell.
• A <td> tag can contain text, links, images, lists, forms, other
tables, etc.
TheStateUniversityOfZanzibar
2
Simple HTMLTables
TheStateUniversityOfZanzibar
3
<table>
<tr>
<th>First Name</th>
<th>Last Name</th>
<th>Research Areas</th>
</tr>
<tr>
<td>Pat</td>
<td>Morin</td>
<td>Algorithms and data structures</td>
</tr>
</table>
HTMLTable Tags
TheStateUniversityOfZanzibar
4
Table tags Description
<table> Defines a table
<th> Defines a table header
<tr> Defines a table row
<td> Defines a table cell
<caption> Defines a table caption
<colgroup>
Defines a group of columns in a table, for
formatting
<col />
Defines attribute values for one or more columns
in a table
<thead> Groups the header content in a table
<tbody> Groups the body content in a table
<tfoot> Groups the footer content in a table
<caption> tag
• The <caption> tag is supported in all major browsers.
• You can specify only one caption per table
TheStateUniversityOfZanzibar
5
<table border="1">
<caption>Monthly savings</caption>
<tr>
<th>Month</th>
<th>Savings</th>
</tr>
<tr>
<td>January</td>
<td>$100</td>
</tr>
<tr>
<td>February</td>
<td>$50</td>
</tr>
</table>
<colgroup> tag
• The <colgroup> tag is used to group columns in a table for
formatting.
TheStateUniversityOfZanzibar
6
<table width="100%" border="1">
<colgroup span="2" align="left"></colgroup>
<colgroup align="right" bgcolor=“2></colgroup>
<tr>
<th>ISBN</th>
<th>Title</th>
<th>Price</th>
</tr>
<tr>
<td>3476896</td>
<td>My first HTML</td>
<td>$53</td>
</tr>
<tr>
<td>2489604</td>
<td>My first CSS</td>
<td>$47</td>
</tr>
</table>
<thead>, <tbody> and <tfoot> tag
• The <thead> groups the header content in an HTML table.
• Thw <tfoot> groups the footer content in an HTML table.
• The <tbody> groups the body content in an HTML table.
• <thead>, <tbody> and <tfoot> are partially supported in all
major browser
TheStateUniversityOfZanzibar
7
<thead>, <tbody> and <tfoot> tag
TheStateUniversityOfZanzibar
8
<table border="1">
<thead>
<tr>
<th>Month</th>
<th>Savings</th>
</tr>
</thead>
<tfoot>
<tr>
<td>Sum</td>
<td>$180</td>
</tr>
</tfoot>
<tbody>
<tr>
<td>January</td>
<td>$100</td>
</tr>
<tr>
<td>February</td>
<td>$80</td>
</tr>
</tbody>
</table>
HTML<col> Tag
• The <col> tag defines attribute values for one or more columns
in a table.
TheStateUniversityOfZanzibar
9
<table width="30%" border="1">
<col align="left" width="25%" />
<col align="left" width="50%" />
<col align="right" width="25%" />
<tr>
<th>ISBN</th>
<th>Title</th>
<th>Price</th>
</tr>
<tr>
<td>3476896</td>
<td>My first HTML</td>
<td >$53</td>
</tr>
<tr>
<td>2489604</td>
<td>My first CSS</td>
<td>$47</td>
</tr>
</table>
Attributes of HTMLTable Tags
TheStateUniversityOfZanzibar
10
Table tags
attributees
Description
Cell padding
Creates more white space between the cell content and its
borders.
Cell spacing Increases the distance between the cells.
colspan Merges multiple columns
rowspan Merges multiple rows
valign Aligns the text in the cells
Cell padding
TheStateUniversityOfZanzibar
11
<h4>Without cellpadding:</h4>
<table border="1">
<tr>
<td>First</td>
<td>Row</td>
</tr>
<tr>
<td>Second</td>
<td>Row</td>
</tr>
</table>
<h4>With cellpadding:</h4>
<table border="1"
cellpadding="10">
<tr>
<td>First</td>
<td>Row</td>
</tr>
<tr>
<td>Second</td>
<td>Row</td>
</tr>
</table>
Cell spacing
TheStateUniversityOfZanzibar
12
<h4>Without cellspacing:</h4>
<table border="1">
<tr>
<td>First</td>
<td>Row</td>
</tr>
<tr>
<td>Second</td>
<td>Row</td>
</tr>
</table>
<h4>With cellspacing:</h4>
<table border="1"
cellspacing="10">
<tr>
<td>First</td>
<td>Row</td>
</tr>
<tr>
<td>Second</td>
<td>Row</td>
</tr>
</table>
colspan
TheStateUniversityOfZanzibar
13
<table border="1">
<tr>
<th>First</th>
<th>Row</th>
</tr>
<tr>
<td colspan="2">Second row</td>
</tr>
<tr>
<th>Third</th>
<th>Row</th>
</tr>
</table>
rowspan
TheStateUniversityOfZanzibar
14
<table border="1">
<tr>
<th>First</th>
<th>Row</th>
</tr>
<tr>
<td rowspan="2">Second and Third </td>
<td>row</td>
</tr>
<tr>
<th> Row</th>
</tr>
</table>
TheStateUniversityOfZanzibar
15
TheStateUniversityOfZanzibar
16
Ad

More Related Content

What's hot (20)

Images and Tables in HTML
Images and Tables in HTMLImages and Tables in HTML
Images and Tables in HTML
Aarti P
 
Html
HtmlHtml
Html
yugank_gupta
 
Html
HtmlHtml
Html
Nandakumar Ganapathy
 
Presentation on html, css
Presentation on html, cssPresentation on html, css
Presentation on html, css
Aamir Sohail
 
HTML Table Tags
HTML Table TagsHTML Table Tags
HTML Table Tags
Kainat Ilyas
 
HTML: Tables and Forms
HTML: Tables and FormsHTML: Tables and Forms
HTML: Tables and Forms
BG Java EE Course
 
Html coding
Html codingHtml coding
Html coding
Briana VanBuskirk
 
Html basics
Html basicsHtml basics
Html basics
mcatahir947
 
Html
HtmlHtml
Html
irshadahamed
 
HTML presentation for beginners
HTML presentation for beginnersHTML presentation for beginners
HTML presentation for beginners
jeroenvdmeer
 
Html ppt
Html pptHtml ppt
Html ppt
santosh lamba
 
HTML Tags
HTML TagsHTML Tags
HTML Tags
Pranay Agrawal
 
CSS Basics
CSS BasicsCSS Basics
CSS Basics
WordPress Memphis
 
Introduction to html
Introduction to htmlIntroduction to html
Introduction to html
vikasgaur31
 
Lecture 2 introduction to html
Lecture 2  introduction to htmlLecture 2  introduction to html
Lecture 2 introduction to html
palhaftab
 
Html Table
Html TableHtml Table
Html Table
nehashinde41
 
Introduction to XML
Introduction to XMLIntroduction to XML
Introduction to XML
yht4ever
 
HTML
HTMLHTML
HTML
chinesebilli
 
html-css
html-csshtml-css
html-css
Dhirendra Chauhan
 
Bootstrap ppt
Bootstrap pptBootstrap ppt
Bootstrap ppt
Ishtdeep Hora
 

Similar to Lecture 5 html table (20)

Web design - Working with tables in HTML
Web design - Working with tables in HTMLWeb design - Working with tables in HTML
Web design - Working with tables in HTML
Mustafa Kamel Mohammadi
 
HTML Tables
HTML TablesHTML Tables
HTML Tables
stephenjamesbarcelo15
 
01 HTML-Tables-1.pptx
01 HTML-Tables-1.pptx01 HTML-Tables-1.pptx
01 HTML-Tables-1.pptx
AhmedAlmughalis1
 
Web I - 03 - Tables
Web I - 03 - TablesWeb I - 03 - Tables
Web I - 03 - Tables
Randy Connolly
 
HTML Tables
HTML TablesHTML Tables
HTML Tables
WaheedaBanoShaikh
 
Table structure introduction
Table structure introductionTable structure introduction
Table structure introduction
nobel mujuji
 
chapter 3 Basics of web design chapter 3 forcusing html tables
chapter 3 Basics of web  design chapter 3 forcusing html tableschapter 3 Basics of web  design chapter 3 forcusing html tables
chapter 3 Basics of web design chapter 3 forcusing html tables
micc19920
 
A PPT on Creation of Tables in HTML, WEB Designing
A PPT on Creation of Tables in HTML, WEB DesigningA PPT on Creation of Tables in HTML, WEB Designing
A PPT on Creation of Tables in HTML, WEB Designing
GuthulaPradeep
 
HTML Basics, Web Development Part-2.pptx
HTML Basics, Web Development Part-2.pptxHTML Basics, Web Development Part-2.pptx
HTML Basics, Web Development Part-2.pptx
Farzana Younas
 
Html table tags
Html table tagsHtml table tags
Html table tags
eShikshak
 
Method of creating table using HTML.pptx
Method of creating table using HTML.pptxMethod of creating table using HTML.pptx
Method of creating table using HTML.pptx
mkrv0617
 
Method of creating table using HTML.pptx
Method of creating table using HTML.pptxMethod of creating table using HTML.pptx
Method of creating table using HTML.pptx
mkrv0617
 
Html_Day_Three(W3Schools)
Html_Day_Three(W3Schools)Html_Day_Three(W3Schools)
Html_Day_Three(W3Schools)
Rafi Haidari
 
nnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn.pptx
nnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn.pptxnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn.pptx
nnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn.pptx
Orin18
 
Html
HtmlHtml
Html
samanbandaraherath
 
v4-html-table-210321161424.pptx
v4-html-table-210321161424.pptxv4-html-table-210321161424.pptx
v4-html-table-210321161424.pptx
HemantBansal35
 
table html web programing
table  html  web programingtable  html  web programing
table html web programing
lodhran-hayat
 
HTML
HTMLHTML
HTML
Doeun KOCH
 
HTML_Tables_Forms_Guide------------.pptx
HTML_Tables_Forms_Guide------------.pptxHTML_Tables_Forms_Guide------------.pptx
HTML_Tables_Forms_Guide------------.pptx
deepika995977
 
Tables of html sebagai bahan untuk membuat tabel.ppt
Tables of html sebagai bahan untuk membuat tabel.pptTables of html sebagai bahan untuk membuat tabel.ppt
Tables of html sebagai bahan untuk membuat tabel.ppt
MacHroz Mac
 
Web design - Working with tables in HTML
Web design - Working with tables in HTMLWeb design - Working with tables in HTML
Web design - Working with tables in HTML
Mustafa Kamel Mohammadi
 
Table structure introduction
Table structure introductionTable structure introduction
Table structure introduction
nobel mujuji
 
chapter 3 Basics of web design chapter 3 forcusing html tables
chapter 3 Basics of web  design chapter 3 forcusing html tableschapter 3 Basics of web  design chapter 3 forcusing html tables
chapter 3 Basics of web design chapter 3 forcusing html tables
micc19920
 
A PPT on Creation of Tables in HTML, WEB Designing
A PPT on Creation of Tables in HTML, WEB DesigningA PPT on Creation of Tables in HTML, WEB Designing
A PPT on Creation of Tables in HTML, WEB Designing
GuthulaPradeep
 
HTML Basics, Web Development Part-2.pptx
HTML Basics, Web Development Part-2.pptxHTML Basics, Web Development Part-2.pptx
HTML Basics, Web Development Part-2.pptx
Farzana Younas
 
Html table tags
Html table tagsHtml table tags
Html table tags
eShikshak
 
Method of creating table using HTML.pptx
Method of creating table using HTML.pptxMethod of creating table using HTML.pptx
Method of creating table using HTML.pptx
mkrv0617
 
Method of creating table using HTML.pptx
Method of creating table using HTML.pptxMethod of creating table using HTML.pptx
Method of creating table using HTML.pptx
mkrv0617
 
Html_Day_Three(W3Schools)
Html_Day_Three(W3Schools)Html_Day_Three(W3Schools)
Html_Day_Three(W3Schools)
Rafi Haidari
 
nnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn.pptx
nnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn.pptxnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn.pptx
nnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn.pptx
Orin18
 
v4-html-table-210321161424.pptx
v4-html-table-210321161424.pptxv4-html-table-210321161424.pptx
v4-html-table-210321161424.pptx
HemantBansal35
 
table html web programing
table  html  web programingtable  html  web programing
table html web programing
lodhran-hayat
 
HTML_Tables_Forms_Guide------------.pptx
HTML_Tables_Forms_Guide------------.pptxHTML_Tables_Forms_Guide------------.pptx
HTML_Tables_Forms_Guide------------.pptx
deepika995977
 
Tables of html sebagai bahan untuk membuat tabel.ppt
Tables of html sebagai bahan untuk membuat tabel.pptTables of html sebagai bahan untuk membuat tabel.ppt
Tables of html sebagai bahan untuk membuat tabel.ppt
MacHroz Mac
 
Ad

Recently uploaded (20)

Virtualization Trends Streamlining Operations in Telecom with David Bernard ...
Virtualization Trends  Streamlining Operations in Telecom with David Bernard ...Virtualization Trends  Streamlining Operations in Telecom with David Bernard ...
Virtualization Trends Streamlining Operations in Telecom with David Bernard ...
David Bernard Ezell
 
IT Services Workflow From Request to Resolution
IT Services Workflow From Request to ResolutionIT Services Workflow From Request to Resolution
IT Services Workflow From Request to Resolution
mzmziiskd
 
Determining Glass is mechanical textile
Determining  Glass is mechanical textileDetermining  Glass is mechanical textile
Determining Glass is mechanical textile
Azizul Hakim
 
Perguntas dos animais - Slides ilustrados de múltipla escolha
Perguntas dos animais - Slides ilustrados de múltipla escolhaPerguntas dos animais - Slides ilustrados de múltipla escolha
Perguntas dos animais - Slides ilustrados de múltipla escolha
socaslev
 
highend-srxseries-services-gateways-customer-presentation.pptx
highend-srxseries-services-gateways-customer-presentation.pptxhighend-srxseries-services-gateways-customer-presentation.pptx
highend-srxseries-services-gateways-customer-presentation.pptx
elhadjcheikhdiop
 
APNIC -Policy Development Process, presented at Local APIGA Taiwan 2025
APNIC -Policy Development Process, presented at Local APIGA Taiwan 2025APNIC -Policy Development Process, presented at Local APIGA Taiwan 2025
APNIC -Policy Development Process, presented at Local APIGA Taiwan 2025
APNIC
 
5-Proses-proses Akuisisi Citra Digital.pptx
5-Proses-proses Akuisisi Citra Digital.pptx5-Proses-proses Akuisisi Citra Digital.pptx
5-Proses-proses Akuisisi Citra Digital.pptx
andani26
 
Understanding the Tor Network and Exploring the Deep Web
Understanding the Tor Network and Exploring the Deep WebUnderstanding the Tor Network and Exploring the Deep Web
Understanding the Tor Network and Exploring the Deep Web
nabilajabin35
 
final project for icpna b08 if someone want.pptx
final project for icpna b08 if someone want.pptxfinal project for icpna b08 if someone want.pptx
final project for icpna b08 if someone want.pptx
ESTEFANOANDREYGARCIA
 
Mobile database for your company telemarketing or sms marketing campaigns. Fr...
Mobile database for your company telemarketing or sms marketing campaigns. Fr...Mobile database for your company telemarketing or sms marketing campaigns. Fr...
Mobile database for your company telemarketing or sms marketing campaigns. Fr...
DataProvider1
 
data science data stoger Presentation1.pptx
data science data stoger Presentation1.pptxdata science data stoger Presentation1.pptx
data science data stoger Presentation1.pptx
sandeepsherkhane830
 
Best web hosting Vancouver 2025 for you business
Best web hosting Vancouver 2025 for you businessBest web hosting Vancouver 2025 for you business
Best web hosting Vancouver 2025 for you business
steve198109
 
White and Red Clean Car Business Pitch Presentation.pptx
White and Red Clean Car Business Pitch Presentation.pptxWhite and Red Clean Car Business Pitch Presentation.pptx
White and Red Clean Car Business Pitch Presentation.pptx
canumatown
 
(Hosting PHising Sites) for Cryptography and network security
(Hosting PHising Sites) for Cryptography and network security(Hosting PHising Sites) for Cryptography and network security
(Hosting PHising Sites) for Cryptography and network security
aluacharya169
 
Smart Mobile App Pitch Deck丨AI Travel App Presentation Template
Smart Mobile App Pitch Deck丨AI Travel App Presentation TemplateSmart Mobile App Pitch Deck丨AI Travel App Presentation Template
Smart Mobile App Pitch Deck丨AI Travel App Presentation Template
yojeari421237
 
Top Vancouver Green Business Ideas for 2025 Powered by 4GoodHosting
Top Vancouver Green Business Ideas for 2025 Powered by 4GoodHostingTop Vancouver Green Business Ideas for 2025 Powered by 4GoodHosting
Top Vancouver Green Business Ideas for 2025 Powered by 4GoodHosting
steve198109
 
Reliable Vancouver Web Hosting with Local Servers & 24/7 Support
Reliable Vancouver Web Hosting with Local Servers & 24/7 SupportReliable Vancouver Web Hosting with Local Servers & 24/7 Support
Reliable Vancouver Web Hosting with Local Servers & 24/7 Support
steve198109
 
How to Switch Hosting Providers in Vancouver Without Any Downtime
How to Switch Hosting Providers in Vancouver Without Any DowntimeHow to Switch Hosting Providers in Vancouver Without Any Downtime
How to Switch Hosting Providers in Vancouver Without Any Downtime
steve198109
 
Computers Networks Computers Networks Computers Networks
Computers Networks Computers Networks Computers NetworksComputers Networks Computers Networks Computers Networks
Computers Networks Computers Networks Computers Networks
Tito208863
 
What's going on with IPv6? presented by Geoff Huston
What's going on with IPv6? presented by Geoff HustonWhat's going on with IPv6? presented by Geoff Huston
What's going on with IPv6? presented by Geoff Huston
APNIC
 
Virtualization Trends Streamlining Operations in Telecom with David Bernard ...
Virtualization Trends  Streamlining Operations in Telecom with David Bernard ...Virtualization Trends  Streamlining Operations in Telecom with David Bernard ...
Virtualization Trends Streamlining Operations in Telecom with David Bernard ...
David Bernard Ezell
 
IT Services Workflow From Request to Resolution
IT Services Workflow From Request to ResolutionIT Services Workflow From Request to Resolution
IT Services Workflow From Request to Resolution
mzmziiskd
 
Determining Glass is mechanical textile
Determining  Glass is mechanical textileDetermining  Glass is mechanical textile
Determining Glass is mechanical textile
Azizul Hakim
 
Perguntas dos animais - Slides ilustrados de múltipla escolha
Perguntas dos animais - Slides ilustrados de múltipla escolhaPerguntas dos animais - Slides ilustrados de múltipla escolha
Perguntas dos animais - Slides ilustrados de múltipla escolha
socaslev
 
highend-srxseries-services-gateways-customer-presentation.pptx
highend-srxseries-services-gateways-customer-presentation.pptxhighend-srxseries-services-gateways-customer-presentation.pptx
highend-srxseries-services-gateways-customer-presentation.pptx
elhadjcheikhdiop
 
APNIC -Policy Development Process, presented at Local APIGA Taiwan 2025
APNIC -Policy Development Process, presented at Local APIGA Taiwan 2025APNIC -Policy Development Process, presented at Local APIGA Taiwan 2025
APNIC -Policy Development Process, presented at Local APIGA Taiwan 2025
APNIC
 
5-Proses-proses Akuisisi Citra Digital.pptx
5-Proses-proses Akuisisi Citra Digital.pptx5-Proses-proses Akuisisi Citra Digital.pptx
5-Proses-proses Akuisisi Citra Digital.pptx
andani26
 
Understanding the Tor Network and Exploring the Deep Web
Understanding the Tor Network and Exploring the Deep WebUnderstanding the Tor Network and Exploring the Deep Web
Understanding the Tor Network and Exploring the Deep Web
nabilajabin35
 
final project for icpna b08 if someone want.pptx
final project for icpna b08 if someone want.pptxfinal project for icpna b08 if someone want.pptx
final project for icpna b08 if someone want.pptx
ESTEFANOANDREYGARCIA
 
Mobile database for your company telemarketing or sms marketing campaigns. Fr...
Mobile database for your company telemarketing or sms marketing campaigns. Fr...Mobile database for your company telemarketing or sms marketing campaigns. Fr...
Mobile database for your company telemarketing or sms marketing campaigns. Fr...
DataProvider1
 
data science data stoger Presentation1.pptx
data science data stoger Presentation1.pptxdata science data stoger Presentation1.pptx
data science data stoger Presentation1.pptx
sandeepsherkhane830
 
Best web hosting Vancouver 2025 for you business
Best web hosting Vancouver 2025 for you businessBest web hosting Vancouver 2025 for you business
Best web hosting Vancouver 2025 for you business
steve198109
 
White and Red Clean Car Business Pitch Presentation.pptx
White and Red Clean Car Business Pitch Presentation.pptxWhite and Red Clean Car Business Pitch Presentation.pptx
White and Red Clean Car Business Pitch Presentation.pptx
canumatown
 
(Hosting PHising Sites) for Cryptography and network security
(Hosting PHising Sites) for Cryptography and network security(Hosting PHising Sites) for Cryptography and network security
(Hosting PHising Sites) for Cryptography and network security
aluacharya169
 
Smart Mobile App Pitch Deck丨AI Travel App Presentation Template
Smart Mobile App Pitch Deck丨AI Travel App Presentation TemplateSmart Mobile App Pitch Deck丨AI Travel App Presentation Template
Smart Mobile App Pitch Deck丨AI Travel App Presentation Template
yojeari421237
 
Top Vancouver Green Business Ideas for 2025 Powered by 4GoodHosting
Top Vancouver Green Business Ideas for 2025 Powered by 4GoodHostingTop Vancouver Green Business Ideas for 2025 Powered by 4GoodHosting
Top Vancouver Green Business Ideas for 2025 Powered by 4GoodHosting
steve198109
 
Reliable Vancouver Web Hosting with Local Servers & 24/7 Support
Reliable Vancouver Web Hosting with Local Servers & 24/7 SupportReliable Vancouver Web Hosting with Local Servers & 24/7 Support
Reliable Vancouver Web Hosting with Local Servers & 24/7 Support
steve198109
 
How to Switch Hosting Providers in Vancouver Without Any Downtime
How to Switch Hosting Providers in Vancouver Without Any DowntimeHow to Switch Hosting Providers in Vancouver Without Any Downtime
How to Switch Hosting Providers in Vancouver Without Any Downtime
steve198109
 
Computers Networks Computers Networks Computers Networks
Computers Networks Computers Networks Computers NetworksComputers Networks Computers Networks Computers Networks
Computers Networks Computers Networks Computers Networks
Tito208863
 
What's going on with IPv6? presented by Geoff Huston
What's going on with IPv6? presented by Geoff HustonWhat's going on with IPv6? presented by Geoff Huston
What's going on with IPv6? presented by Geoff Huston
APNIC
 
Ad

Lecture 5 html table

  • 1. HTMLTABLE COURSE INSTRUCTOR: Mrs. Raya Idrissa Email: [email protected] TheStateUniversityOfZanzibar 1 INF 003: Website Design and Development
  • 2. Simple HTMLTables • Tables are defined with the <table> tag. • A table is divided into rows (with the <tr> tag) • Each row is divided into data cells (with the <td> or <th> tag). • <th> tag used to define header information in a table. • td stands for "table data," and holds the content of a data cell. • A <td> tag can contain text, links, images, lists, forms, other tables, etc. TheStateUniversityOfZanzibar 2
  • 3. Simple HTMLTables TheStateUniversityOfZanzibar 3 <table> <tr> <th>First Name</th> <th>Last Name</th> <th>Research Areas</th> </tr> <tr> <td>Pat</td> <td>Morin</td> <td>Algorithms and data structures</td> </tr> </table>
  • 4. HTMLTable Tags TheStateUniversityOfZanzibar 4 Table tags Description <table> Defines a table <th> Defines a table header <tr> Defines a table row <td> Defines a table cell <caption> Defines a table caption <colgroup> Defines a group of columns in a table, for formatting <col /> Defines attribute values for one or more columns in a table <thead> Groups the header content in a table <tbody> Groups the body content in a table <tfoot> Groups the footer content in a table
  • 5. <caption> tag • The <caption> tag is supported in all major browsers. • You can specify only one caption per table TheStateUniversityOfZanzibar 5 <table border="1"> <caption>Monthly savings</caption> <tr> <th>Month</th> <th>Savings</th> </tr> <tr> <td>January</td> <td>$100</td> </tr> <tr> <td>February</td> <td>$50</td> </tr> </table>
  • 6. <colgroup> tag • The <colgroup> tag is used to group columns in a table for formatting. TheStateUniversityOfZanzibar 6 <table width="100%" border="1"> <colgroup span="2" align="left"></colgroup> <colgroup align="right" bgcolor=“2></colgroup> <tr> <th>ISBN</th> <th>Title</th> <th>Price</th> </tr> <tr> <td>3476896</td> <td>My first HTML</td> <td>$53</td> </tr> <tr> <td>2489604</td> <td>My first CSS</td> <td>$47</td> </tr> </table>
  • 7. <thead>, <tbody> and <tfoot> tag • The <thead> groups the header content in an HTML table. • Thw <tfoot> groups the footer content in an HTML table. • The <tbody> groups the body content in an HTML table. • <thead>, <tbody> and <tfoot> are partially supported in all major browser TheStateUniversityOfZanzibar 7
  • 8. <thead>, <tbody> and <tfoot> tag TheStateUniversityOfZanzibar 8 <table border="1"> <thead> <tr> <th>Month</th> <th>Savings</th> </tr> </thead> <tfoot> <tr> <td>Sum</td> <td>$180</td> </tr> </tfoot> <tbody> <tr> <td>January</td> <td>$100</td> </tr> <tr> <td>February</td> <td>$80</td> </tr> </tbody> </table>
  • 9. HTML<col> Tag • The <col> tag defines attribute values for one or more columns in a table. TheStateUniversityOfZanzibar 9 <table width="30%" border="1"> <col align="left" width="25%" /> <col align="left" width="50%" /> <col align="right" width="25%" /> <tr> <th>ISBN</th> <th>Title</th> <th>Price</th> </tr> <tr> <td>3476896</td> <td>My first HTML</td> <td >$53</td> </tr> <tr> <td>2489604</td> <td>My first CSS</td> <td>$47</td> </tr> </table>
  • 10. Attributes of HTMLTable Tags TheStateUniversityOfZanzibar 10 Table tags attributees Description Cell padding Creates more white space between the cell content and its borders. Cell spacing Increases the distance between the cells. colspan Merges multiple columns rowspan Merges multiple rows valign Aligns the text in the cells
  • 11. Cell padding TheStateUniversityOfZanzibar 11 <h4>Without cellpadding:</h4> <table border="1"> <tr> <td>First</td> <td>Row</td> </tr> <tr> <td>Second</td> <td>Row</td> </tr> </table> <h4>With cellpadding:</h4> <table border="1" cellpadding="10"> <tr> <td>First</td> <td>Row</td> </tr> <tr> <td>Second</td> <td>Row</td> </tr> </table>
  • 12. Cell spacing TheStateUniversityOfZanzibar 12 <h4>Without cellspacing:</h4> <table border="1"> <tr> <td>First</td> <td>Row</td> </tr> <tr> <td>Second</td> <td>Row</td> </tr> </table> <h4>With cellspacing:</h4> <table border="1" cellspacing="10"> <tr> <td>First</td> <td>Row</td> </tr> <tr> <td>Second</td> <td>Row</td> </tr> </table>