SlideShare uma empresa Scribd logo
1 de 11
COMPUTER APPLICATIONS
CLASS X (Code 165)
TOPIC:
UNIT 2: HTML Tables
By
HIMANSHU PATHAK
Contents
• Introduction
• Basic HTML Table Tags
• Table Attributes
Introduction
• HTML tables allow web developers to arrange
data into rows and columns.
• HTML tables are used to manage the layout of
the page e.g. header section, navigation bar,
body content, footer section etc.
• Tables can be used to compare two or more
items in tabular form layout.
• Tables are used to create databases.
Defining Tables in HTML
• An HTML table is defined with the “table” tag.
• Each table row is defined with the “tr” tag.
• A table header is defined with the “th” tag.
• By default, table headings are bold and
centered.
• A table data/cell is defined with the “td” tag.
• The ”caption” tag will serve as a title or
explanation for the table and it shows up at
the top of the table.
Example
<table>
<tr>
<th>Name</th>
<th>Contact</th>
</tr>
<tr>
<td>Pathak</td>
<td>9988776655</td>
</tr>
</table>
Table Tag Attribute
• Border attribute: We can use border attribute
of table tag in HTML to specify border. But it is
not recommended now.
– <table border="1">
• If you do not need a border, then you can use
border = "0".
Cellspacing & Cellpadding
• There are two attributes called cellspacing and
cellpadding which will use to adjust the white
space in table cells.
• The cellspacing attribute defines space
between table cells.
• cellpadding represents the distance between
cell borders and the content within a cell.
– <table cellpadding = "5" cellspacing = "5">
Colspan & Rowspan
• We will use colspan
attribute if we want to
merge two or more
columns into a single
column.
• Similar way we will
use rowspan if we want
to merge two or more
rows.
<table border = "1">
<tr>
<th>Period 1</th>
<th>Period 2</th>
<th>Period 3</th>
</tr>
<tr>
<td rowspan = "2"> Python
</td>
<td>HTML</td>
<td>Computer</td>
</tr>
<tr>
<td>Computer</td>
<td>HTML</td>
</tr>
<tr>
<td colspan = “2”>Python Lab</td>
<td>Library</td>
</tr>
</table>
Tables Background
• bgcolor attribute − We can set
background color for whole table
or just for one cell.
• background attribute − We can
set background image for whole
table or just for one cell.
• We can also set border color also
using bordercolor attribute.
• Note − The bgcolor, background,
and bordercolor attributes
deprecated in HTML5.
<table border = "1“ bordercolor = “red" bgcolor
= "yellow">
<tr>
<th>Period 1</th>
<th>Period 2</th>
<th>Period 3</th>
</tr>
<tr>
<td rowspan = "2"> Python
</td>
<td>HTML</td>
<td>Computer</td>
</tr>
<tr>
<td>Computer</td>
<td>HTML</td>
</tr>
<tr>
<td colspan = “2">Python Lab</td>
<td>Library</td>
</tr>
</table>
Table Height & Width
• You can set a table
width and height
using width and height
attributes.
• You can specify table
width or height in
terms of pixels or in
terms of percentage of
available screen area.
<table border = "1" width = “400” height = “200” >
<tr>
<th>Period 1</th>
<th>Period 2</th>
<th>Period 3</th>
</tr>
<tr>
<td rowspan = "2"> Python
</td>
<td>HTML</td>
<td>Computer</td>
</tr>
<tr>
<td>Computer</td>
<td>HTML</td>
</tr>
<tr>
<td colspan = “2">Python Lab</td>
<td>Library</td>
</tr>
</table>
Summary
• HTML Table
• Table Defining Tags and their attributes
• In the next class, we will start Unit II – HTML
Forms in detail.
•Thanks

Mais conteúdo relacionado

Mais procurados (20)

CSS Basics
CSS BasicsCSS Basics
CSS Basics
 
HTML basics
HTML basicsHTML basics
HTML basics
 
Html
HtmlHtml
Html
 
Html 5
Html 5Html 5
Html 5
 
HTML
HTMLHTML
HTML
 
HTML Introduction
HTML IntroductionHTML Introduction
HTML Introduction
 
HTML By K.Sasidhar
HTML By K.SasidharHTML By K.Sasidhar
HTML By K.Sasidhar
 
Html presentation
Html presentationHtml presentation
Html presentation
 
Html 5
Html 5Html 5
Html 5
 
Html link and list tags
Html link and list tagsHtml link and list tags
Html link and list tags
 
uptu web technology unit 2 html
uptu web technology unit 2 htmluptu web technology unit 2 html
uptu web technology unit 2 html
 
Introduction to html
Introduction to htmlIntroduction to html
Introduction to html
 
Lecture 2 introduction to html
Lecture 2  introduction to htmlLecture 2  introduction to html
Lecture 2 introduction to html
 
Web designing using html
Web designing using htmlWeb designing using html
Web designing using html
 
1. HTML
1. HTML1. HTML
1. HTML
 
Basic of HTML, CSS(StyleSheet), JavaScript(js), Bootstrap, JSON & AngularJS
Basic of HTML, CSS(StyleSheet), JavaScript(js), Bootstrap, JSON & AngularJSBasic of HTML, CSS(StyleSheet), JavaScript(js), Bootstrap, JSON & AngularJS
Basic of HTML, CSS(StyleSheet), JavaScript(js), Bootstrap, JSON & AngularJS
 
Html
HtmlHtml
Html
 
HTML Fundamentals
HTML FundamentalsHTML Fundamentals
HTML Fundamentals
 
HTML (Web) basics for a beginner
HTML (Web) basics for a beginnerHTML (Web) basics for a beginner
HTML (Web) basics for a beginner
 
Html
HtmlHtml
Html
 

Semelhante a Html tables (20)

HTML Tables
HTML TablesHTML Tables
HTML Tables
 
HTML (Hyper Text Markup Language) by Mukesh
HTML (Hyper Text Markup Language) by MukeshHTML (Hyper Text Markup Language) by Mukesh
HTML (Hyper Text Markup Language) by Mukesh
 
Computer language - Html tables
Computer language - Html tablesComputer language - Html tables
Computer language - Html tables
 
Response Tables.ppt
Response Tables.pptResponse Tables.ppt
Response Tables.ppt
 
HTML TABLES
HTML TABLESHTML TABLES
HTML TABLES
 
Lecture 2.ppt
Lecture 2.pptLecture 2.ppt
Lecture 2.ppt
 
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
 
HTML 5 Tables and Forms
HTML 5 Tables and FormsHTML 5 Tables and Forms
HTML 5 Tables and Forms
 
2. HTML Tables.ppt
2. HTML Tables.ppt2. HTML Tables.ppt
2. HTML Tables.ppt
 
Html3
Html3Html3
Html3
 
Html3
Html3Html3
Html3
 
Web I - 03 - Tables
Web I - 03 - TablesWeb I - 03 - Tables
Web I - 03 - Tables
 
uptu web technology unit 2 html
uptu web technology unit 2 htmluptu web technology unit 2 html
uptu web technology unit 2 html
 
Table structure introduction
Table structure introductionTable structure introduction
Table structure introduction
 
Lecture-4.pptx
Lecture-4.pptxLecture-4.pptx
Lecture-4.pptx
 
HTML Lecture Part 2 of 2
HTML Lecture Part 2 of 2HTML Lecture Part 2 of 2
HTML Lecture Part 2 of 2
 
WEP4 and 5.pptx
WEP4 and 5.pptxWEP4 and 5.pptx
WEP4 and 5.pptx
 
Html (1)
Html (1)Html (1)
Html (1)
 
Html table tags
Html table tagsHtml table tags
Html table tags
 
01 HTML-Tables-1.pptx
01 HTML-Tables-1.pptx01 HTML-Tables-1.pptx
01 HTML-Tables-1.pptx
 

Mais de Himanshu Pathak

Mais de Himanshu Pathak (16)

Introduction to E commerce
Introduction to E commerceIntroduction to E commerce
Introduction to E commerce
 
Digital property rights
Digital property rightsDigital property rights
Digital property rights
 
Intellectual property rights
Intellectual property rightsIntellectual property rights
Intellectual property rights
 
An Introduction to Cyber Ethics
An Introduction to Cyber EthicsAn Introduction to Cyber Ethics
An Introduction to Cyber Ethics
 
Cascading style sheet part 2
Cascading style sheet   part 2Cascading style sheet   part 2
Cascading style sheet part 2
 
Cascading style sheet an introduction
Cascading style sheet   an introductionCascading style sheet   an introduction
Cascading style sheet an introduction
 
Html multimedia
Html multimediaHtml multimedia
Html multimedia
 
Html forms
Html formsHtml forms
Html forms
 
Basic html tags
Basic html tagsBasic html tags
Basic html tags
 
Introduction to html
Introduction to htmlIntroduction to html
Introduction to html
 
Mobile technologies
Mobile technologiesMobile technologies
Mobile technologies
 
Web services
Web servicesWeb services
Web services
 
Remote Login and File Transfer Protocols
Remote Login and File Transfer ProtocolsRemote Login and File Transfer Protocols
Remote Login and File Transfer Protocols
 
Internet protocol
Internet protocolInternet protocol
Internet protocol
 
Introduction to internet
Introduction to internetIntroduction to internet
Introduction to internet
 
What is Computer?
What is Computer?What is Computer?
What is Computer?
 

Último

Exploring_the_Narrative_Style_of_Amitav_Ghoshs_Gun_Island.pptx
Exploring_the_Narrative_Style_of_Amitav_Ghoshs_Gun_Island.pptxExploring_the_Narrative_Style_of_Amitav_Ghoshs_Gun_Island.pptx
Exploring_the_Narrative_Style_of_Amitav_Ghoshs_Gun_Island.pptxPooja Bhuva
 
NO1 Top Black Magic Specialist In Lahore Black magic In Pakistan Kala Ilam Ex...
NO1 Top Black Magic Specialist In Lahore Black magic In Pakistan Kala Ilam Ex...NO1 Top Black Magic Specialist In Lahore Black magic In Pakistan Kala Ilam Ex...
NO1 Top Black Magic Specialist In Lahore Black magic In Pakistan Kala Ilam Ex...Amil baba
 
Micro-Scholarship, What it is, How can it help me.pdf
Micro-Scholarship, What it is, How can it help me.pdfMicro-Scholarship, What it is, How can it help me.pdf
Micro-Scholarship, What it is, How can it help me.pdfPoh-Sun Goh
 
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...Nguyen Thanh Tu Collection
 
How to Create and Manage Wizard in Odoo 17
How to Create and Manage Wizard in Odoo 17How to Create and Manage Wizard in Odoo 17
How to Create and Manage Wizard in Odoo 17Celine George
 
Towards a code of practice for AI in AT.pptx
Towards a code of practice for AI in AT.pptxTowards a code of practice for AI in AT.pptx
Towards a code of practice for AI in AT.pptxJisc
 
How to Add New Custom Addons Path in Odoo 17
How to Add New Custom Addons Path in Odoo 17How to Add New Custom Addons Path in Odoo 17
How to Add New Custom Addons Path in Odoo 17Celine George
 
How to setup Pycharm environment for Odoo 17.pptx
How to setup Pycharm environment for Odoo 17.pptxHow to setup Pycharm environment for Odoo 17.pptx
How to setup Pycharm environment for Odoo 17.pptxCeline George
 
Food safety_Challenges food safety laboratories_.pdf
Food safety_Challenges food safety laboratories_.pdfFood safety_Challenges food safety laboratories_.pdf
Food safety_Challenges food safety laboratories_.pdfSherif Taha
 
Holdier Curriculum Vitae (April 2024).pdf
Holdier Curriculum Vitae (April 2024).pdfHoldier Curriculum Vitae (April 2024).pdf
Holdier Curriculum Vitae (April 2024).pdfagholdier
 
Wellbeing inclusion and digital dystopias.pptx
Wellbeing inclusion and digital dystopias.pptxWellbeing inclusion and digital dystopias.pptx
Wellbeing inclusion and digital dystopias.pptxJisc
 
Understanding Accommodations and Modifications
Understanding  Accommodations and ModificationsUnderstanding  Accommodations and Modifications
Understanding Accommodations and ModificationsMJDuyan
 
ICT role in 21st century education and it's challenges.
ICT role in 21st century education and it's challenges.ICT role in 21st century education and it's challenges.
ICT role in 21st century education and it's challenges.MaryamAhmad92
 
Application orientated numerical on hev.ppt
Application orientated numerical on hev.pptApplication orientated numerical on hev.ppt
Application orientated numerical on hev.pptRamjanShidvankar
 
Kodo Millet PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...
Kodo Millet  PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...Kodo Millet  PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...
Kodo Millet PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...pradhanghanshyam7136
 
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...ZurliaSoop
 
Python Notes for mca i year students osmania university.docx
Python Notes for mca i year students osmania university.docxPython Notes for mca i year students osmania university.docx
Python Notes for mca i year students osmania university.docxRamakrishna Reddy Bijjam
 
The basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptxThe basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptxheathfieldcps1
 
Key note speaker Neum_Admir Softic_ENG.pdf
Key note speaker Neum_Admir Softic_ENG.pdfKey note speaker Neum_Admir Softic_ENG.pdf
Key note speaker Neum_Admir Softic_ENG.pdfAdmir Softic
 

Último (20)

Exploring_the_Narrative_Style_of_Amitav_Ghoshs_Gun_Island.pptx
Exploring_the_Narrative_Style_of_Amitav_Ghoshs_Gun_Island.pptxExploring_the_Narrative_Style_of_Amitav_Ghoshs_Gun_Island.pptx
Exploring_the_Narrative_Style_of_Amitav_Ghoshs_Gun_Island.pptx
 
NO1 Top Black Magic Specialist In Lahore Black magic In Pakistan Kala Ilam Ex...
NO1 Top Black Magic Specialist In Lahore Black magic In Pakistan Kala Ilam Ex...NO1 Top Black Magic Specialist In Lahore Black magic In Pakistan Kala Ilam Ex...
NO1 Top Black Magic Specialist In Lahore Black magic In Pakistan Kala Ilam Ex...
 
Micro-Scholarship, What it is, How can it help me.pdf
Micro-Scholarship, What it is, How can it help me.pdfMicro-Scholarship, What it is, How can it help me.pdf
Micro-Scholarship, What it is, How can it help me.pdf
 
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...
 
How to Create and Manage Wizard in Odoo 17
How to Create and Manage Wizard in Odoo 17How to Create and Manage Wizard in Odoo 17
How to Create and Manage Wizard in Odoo 17
 
Towards a code of practice for AI in AT.pptx
Towards a code of practice for AI in AT.pptxTowards a code of practice for AI in AT.pptx
Towards a code of practice for AI in AT.pptx
 
How to Add New Custom Addons Path in Odoo 17
How to Add New Custom Addons Path in Odoo 17How to Add New Custom Addons Path in Odoo 17
How to Add New Custom Addons Path in Odoo 17
 
How to setup Pycharm environment for Odoo 17.pptx
How to setup Pycharm environment for Odoo 17.pptxHow to setup Pycharm environment for Odoo 17.pptx
How to setup Pycharm environment for Odoo 17.pptx
 
Food safety_Challenges food safety laboratories_.pdf
Food safety_Challenges food safety laboratories_.pdfFood safety_Challenges food safety laboratories_.pdf
Food safety_Challenges food safety laboratories_.pdf
 
Holdier Curriculum Vitae (April 2024).pdf
Holdier Curriculum Vitae (April 2024).pdfHoldier Curriculum Vitae (April 2024).pdf
Holdier Curriculum Vitae (April 2024).pdf
 
Wellbeing inclusion and digital dystopias.pptx
Wellbeing inclusion and digital dystopias.pptxWellbeing inclusion and digital dystopias.pptx
Wellbeing inclusion and digital dystopias.pptx
 
Understanding Accommodations and Modifications
Understanding  Accommodations and ModificationsUnderstanding  Accommodations and Modifications
Understanding Accommodations and Modifications
 
ICT role in 21st century education and it's challenges.
ICT role in 21st century education and it's challenges.ICT role in 21st century education and it's challenges.
ICT role in 21st century education and it's challenges.
 
Application orientated numerical on hev.ppt
Application orientated numerical on hev.pptApplication orientated numerical on hev.ppt
Application orientated numerical on hev.ppt
 
Mehran University Newsletter Vol-X, Issue-I, 2024
Mehran University Newsletter Vol-X, Issue-I, 2024Mehran University Newsletter Vol-X, Issue-I, 2024
Mehran University Newsletter Vol-X, Issue-I, 2024
 
Kodo Millet PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...
Kodo Millet  PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...Kodo Millet  PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...
Kodo Millet PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...
 
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
 
Python Notes for mca i year students osmania university.docx
Python Notes for mca i year students osmania university.docxPython Notes for mca i year students osmania university.docx
Python Notes for mca i year students osmania university.docx
 
The basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptxThe basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptx
 
Key note speaker Neum_Admir Softic_ENG.pdf
Key note speaker Neum_Admir Softic_ENG.pdfKey note speaker Neum_Admir Softic_ENG.pdf
Key note speaker Neum_Admir Softic_ENG.pdf
 

Html tables

  • 1. COMPUTER APPLICATIONS CLASS X (Code 165) TOPIC: UNIT 2: HTML Tables By HIMANSHU PATHAK
  • 2. Contents • Introduction • Basic HTML Table Tags • Table Attributes
  • 3. Introduction • HTML tables allow web developers to arrange data into rows and columns. • HTML tables are used to manage the layout of the page e.g. header section, navigation bar, body content, footer section etc. • Tables can be used to compare two or more items in tabular form layout. • Tables are used to create databases.
  • 4. Defining Tables in HTML • An HTML table is defined with the “table” tag. • Each table row is defined with the “tr” tag. • A table header is defined with the “th” tag. • By default, table headings are bold and centered. • A table data/cell is defined with the “td” tag. • The ”caption” tag will serve as a title or explanation for the table and it shows up at the top of the table.
  • 6. Table Tag Attribute • Border attribute: We can use border attribute of table tag in HTML to specify border. But it is not recommended now. – <table border="1"> • If you do not need a border, then you can use border = "0".
  • 7. Cellspacing & Cellpadding • There are two attributes called cellspacing and cellpadding which will use to adjust the white space in table cells. • The cellspacing attribute defines space between table cells. • cellpadding represents the distance between cell borders and the content within a cell. – <table cellpadding = "5" cellspacing = "5">
  • 8. Colspan & Rowspan • We will use colspan attribute if we want to merge two or more columns into a single column. • Similar way we will use rowspan if we want to merge two or more rows. <table border = "1"> <tr> <th>Period 1</th> <th>Period 2</th> <th>Period 3</th> </tr> <tr> <td rowspan = "2"> Python </td> <td>HTML</td> <td>Computer</td> </tr> <tr> <td>Computer</td> <td>HTML</td> </tr> <tr> <td colspan = “2”>Python Lab</td> <td>Library</td> </tr> </table>
  • 9. Tables Background • bgcolor attribute − We can set background color for whole table or just for one cell. • background attribute − We can set background image for whole table or just for one cell. • We can also set border color also using bordercolor attribute. • Note − The bgcolor, background, and bordercolor attributes deprecated in HTML5. <table border = "1“ bordercolor = “red" bgcolor = "yellow"> <tr> <th>Period 1</th> <th>Period 2</th> <th>Period 3</th> </tr> <tr> <td rowspan = "2"> Python </td> <td>HTML</td> <td>Computer</td> </tr> <tr> <td>Computer</td> <td>HTML</td> </tr> <tr> <td colspan = “2">Python Lab</td> <td>Library</td> </tr> </table>
  • 10. Table Height & Width • You can set a table width and height using width and height attributes. • You can specify table width or height in terms of pixels or in terms of percentage of available screen area. <table border = "1" width = “400” height = “200” > <tr> <th>Period 1</th> <th>Period 2</th> <th>Period 3</th> </tr> <tr> <td rowspan = "2"> Python </td> <td>HTML</td> <td>Computer</td> </tr> <tr> <td>Computer</td> <td>HTML</td> </tr> <tr> <td colspan = “2">Python Lab</td> <td>Library</td> </tr> </table>
  • 11. Summary • HTML Table • Table Defining Tags and their attributes • In the next class, we will start Unit II – HTML Forms in detail. •Thanks