SlideShare uma empresa Scribd logo
1 de 52
TABELAS
HTML
ELEMENTOS
<TABLE>
<TR>
<TD>
</TABLE>
INICIO DA TABELA
FIM DA TABELA
ELEMENTOS
<TABLE>
<TR>
<TD>
</TABLE>
INICIO DE UMA LINHA DA TABELA
(TABLE ROW = <TR>)
ELEMENTOS
<TABLE>
<TR>
<TD>Célula 1</TD>
</TR>
</TABLE>
Conteúdo de uma célula
TD = TABLE DATA
ELEMENTOS
<TABLE>
<TR>
<TD>Célula 1</TD>
<TD>Célula 2</TD>
</TR>
</TABLE>
INICIO DE UMA LINHA DA TABELA
ELEMENTOS
<TABLE>
<TR>
<TD>Célula 1</TD>
<TD>Célula 2</TD>
</TR>
<TR>
<TD>Célula 3</TD>
<TD>Célula 4</TD>
</TR>
</TABLE>
Exercício
Crie a seguinte tabela:
Janeiro 100
Mês Poupança
Fevereiro 110
Exercício
Crie a seguinte tabela:
Janeiro 100
Mês Poupança
Fevereiro 110
Substituir:
<td>Mês</td>
Por
<th>Mês</th>
ATRIBUTOS
DAS CÈLULAS
ou da
TABELA
ALIGN
• Left
• Center
• Right
<html>
<table border=“1” align=“right”>
<tr>
<th>Mês</th>
<th>Poupança</th>
</tr>
<tr>
<td>Janeiro</td>
<td>100 Eur</td>
</tr>
<tr>
<td>Fevereiro</td>
<td>70 Eur</td>
</tr>
</table>
</html>
ATRIBUTOS
DA TABELA
• BORDER=“NONE”
• BORDER=n
<html>
<table border=“1” align=“right”>
<tr>
<th>Mês</th>
<th>Poupança</th>
</tr>
<tr>
<td>Janeiro</td>
<td>100 Eur</td>
</tr>
<tr>
<td>Fevereiro</td>
<td>70 Eur</td>
</tr>
</table>
</html>
ATRIBUTOS
DA TABELA
• ALIGN=“RIGHT”
• ALIGN=“CENTER”
• ALIGN=“LEFT”
<html>
<table border=“1” align=“right”>
<tr>
<th>Mês</th>
<th>Poupança</th>
</tr>
<tr>
<td>Janeiro</td>
<td>100 Eur</td>
</tr>
<tr>
<td>Fevereiro</td>
<td>70 Eur</td>
</tr>
</table>
</html>
ATRIBUTOS
<html>
<table border=“1” align=“right”>
<tr>
<th>Mês</th>
<th>Poupança</th>
</tr>
<tr>
<td>Janeiro</td>
<td>100 Eur</td>
</tr>
<tr>
<td>Fevereiro</td>
<td>70 Eur</td>
</tr>
</table>
</html>
Th = Table Header
ATRIBUTOS
DAS CÉLULAS
• Th
• Td
<html>
<table border=“1” align=“right”>
<tr>
<th>Mês</th>
<th>Poupança</th>
</tr>
<tr>
<td>Janeiro</td>
<td>100 Eur</td>
</tr>
<tr>
<td>Fevereiro</td>
<td>70 Eur</td>
</tr>
</table>
</html>
Th = Table Header
Td = Table Data
ATRIBUTOS
DAS CÉLULAS
• Th
• Td
<html>
<table border=“1” align=“right”>
<tr>
<th>Mês</th>
<th>Poupança</th>
</tr>
<tr>
<td>Janeiro</td>
<td>100 Eur</td>
</tr>
<tr>
<td>Fevereiro</td>
<td>70 Eur</td>
</tr>
</table>
</html>
TD = Table Data
ATRIBUTOS
DAS CÉLULAS
• Th
• Td
<html>
<table border=“1” align=“right”>
<tr>
<th>Mês</th>
<th>Poupança</th>
</tr>
<tr>
<td>Janeiro</td>
<td>100 Eur</td>
</tr>
<tr>
<td>Fevereiro</td>
<td>70 Eur</td>
</tr>
</table>
</html>
<TR> = TABLE ROW =
LINHA DA TABELA
ATRIBUTOS
DAS CÉLULAS
• Th
• Td
<html>
<table border=“1” align=“right”>
<tr>
<th>Mês</th>
<th>Poupança</th>
</tr>
<tr>
<td>Janeiro</td>
<td>100 Eur</td>
</tr>
<tr>
<td>Fevereiro</td>
<td>70 Eur</td>
</tr>
</table>
</html>
<TR>= Nova linha da Tabela
<html>
<table border=“1” align=“right”>
<tr>
<th>Mês</th>
<th>Poupança</th>
</tr>
<tr>
<td>Janeiro</td>
<td>100 Eur</td>
</tr>
<tr>
<td>Fevereiro</td>
<td>70 Eur</td>
</tr>
</table>
</html>
ATRIBUTOS
DAS CÉLULAS
• Th
• Td
1ª e 2ª Célula da 2ª Linha
<html>
<table border=“1” align=“right”>
<tr>
<th>Mês</th>
<th>Poupança</th>
</tr>
<tr>
<td>Janeiro</td>
<td>100 Eur</td>
</tr>
<tr>
<td>Fevereiro</td>
<td>70 Eur</td>
</tr>
</table>
</html>
ATRIBUTOS
DAS CÉLULAS
• Th
• Td
Fim da 2ª Linha
<html>
<table border=“1” align=“right”>
<tr>
<th>Mês</th>
<th>Poupança</th>
</tr>
<tr>
<td>Janeiro</td>
<td>100 Eur</td>
</tr>
<tr>
<td>Fevereiro</td>
<td>70 Eur</td>
</tr>
</table>
</html>
ATRIBUTOS
DAS CÉLULAS
• Th
• Td
Fim da Tabela
Exercício
Crie a seguinte tabela com e sem linhas:
Solução
<table cellspacing="0" cellpadding="3" border="1" width="400"
align="center">
<tr>
<td colspan="2" align="center">
<font size="5"><b><i>
Fresh Fruits</i></b>
</font>
</td>
</tr>
<tr>
<td>It has long been known that a diet that includes at least a few servings of
fresh fruit every day will help keep you healthy, fit and trim.</td>
<td><img src="fruitbowl.gif" width="170" height="91" border="0"
alt="Fruitbowl">
</td>
</tr>
</table>
CABEÇALHOS HORIZONTAIS
<table border="1">
<tr>
<th>Name</th>
<th>Telephone</th>
<th>Telephone</th>
</tr>
<tr>
<td>Bill Gates</td>
<td>555 77 854</td>
<td>555 77 855</td>
</tr>
</table>
CABEÇALHOS VERTICAIS
<table border="1">
<tr>
<th>First Name:</th>
<td>Bill Gates</td>
</tr>
<tr>
<th>Telephone:</th>
<td>555 77 854</td>
</tr>
<tr>
<th>Telephone:</th>
<td>555 77 855</td>
</tr>
</table>
THEAD, TFOOT, TBODY
<body >
<table border=1 rules="groups">
<thead>
<tr>
<th>Nome</th>
<th>Apelido</th>
</tr>
</thead>
<tbody>
<tr>
<td>Jorge</td>
<td>Borges</td>
</tr>
<tr>
<td>Lois</td>
<td>Griffin</td>
</tr>
<tr>
</tbody>
<tfoot>
<th>Julio</th>
<th>Ferreira</th>
</tfoot>
</table>
</body>
ATRIBUTOS
• BORDER
• BORDER = NONE
• BORDER = VALOR
<TABLE BORDER>
ATRIBUTOS
• BORDER
• BORDER = NONE
• BORDER = VALOR
CELLSPACING – ESPAÇO ENTRE AS CÉLULAS DA TABELA
<TABLE BORDER CELLSPACING=2> <TABLE BORDER CELLSPACING=10>
ATRIBUTOS
• BORDER
• BORDER = NONE
• BORDER = VALOR
CELLPADDING – ESPAÇO ENTRE AS CÉLULAS DA TABELA
<TABLE BORDER CELLPADDING=1> <TABLE BORDER CELLPADDING=10>
ATRIBUTOS
• ColSpan – nº de colunas ocupadas por uma
célula
• RowSpan – nº de linhas ocupadas por uma célula
Colspan=2
Colspan=2
ATRIBUTOS
<TABLE BORDER=2 CELLPADDING=4>
<TR> <TH COLSPAN=2>Production</TH> </TR>
<TR> <TD>Raha Mutisya</TD> <TD>1493</TD> </TR>
<TR> <TD>Shalom Buraka</TD> <TD>3829</TD> </TR>
<TR> <TD>Brandy Davis</TD> <TD>0283</TD> </TR>
<TR> <TH COLSPAN=2>Sales</TH> </TR>
<TR> <TD>Claire Horne</TD> <TD>4827</TD> </TR>
<TR> <TD>Bruce Eckel</TD> <TD>7246</TD> </TR>
<TR> <TD>Danny Zeman</TD> <TD>5689</TD> </TR> </TABLE>
Colspan=2
Colspan=2
MUDAR COR FUNDO CÉLULA
<TABLE BORDER=2 CELLPADDING=4>
<TR> <TH COLSPAN=2 BGCOLOR="#99CCFF">Production</TH> </TR>
<TR> <TD>Raha Mutisya</TD> <TD>1493</TD> </TR>
<TR> <TD>Shalom Buraka</TD> <TD>3829</TD> </TR>
<TR> <TD>Brandy Davis</TD> <TD>0283</TD> </TR>
<TR> <TH COLSPAN=2 BGCOLOR="#99CCFF">Sales</TH> </TR>
<TR> <TD>Claire Horne</TD> <TD>4827</TD> </TR>
<TR> <TD>Bruce Eckel</TD> <TD>7246</TD> </TR>
<TR> <TD>Danny Zeman</TD> <TD>5689</TD> </TR> </TABLE>
ROWSPAN
<TABLE BORDER=2 CELLPADDING=4>
<TR>
<TH ROWSPAN=3 BGCOLOR="#99CCFF">Production</TH>
<TD>Raha Mutisya</TD>
<TD>1493</TD>
</TR>
<TR> <TD>Shalom Buraka</TD> <TD>3829</TD> </TR>
<TR> <TD>Brandy Davis</TD> <TD>0283</TD> </TR>
<TR> <TH ROWSPAN=3 BGCOLOR="#99CCFF">Sales</TH>
<TD>Claire Horne</TD>
<TD>4827</TD>
</TR>
<TR> <TD>Bruce Eckel</TD> <TD>7246</TD> </TR>
<TR> <TD>Danny Zeman</TD> <TD>5689</TD> </TR>
</TABLE>
Tabela dentro de Tabela
Tabela dentro de Tabela
Tabela Principal
Tabela dentro de Tabela
Tabela Interior
Tabela dentro de Tabela
<table border="1">
<tr>
<td>
<p>This is a paragraph</p>
<p>This is another paragraph</p>
</td>
<td>This cell contains a table:
<table border="1">
<tr>
<td>A</td>
<td>B</td>
</tr>
<tr>
<td>C</td>
<td>D</td>
</tr>
</table>
</td>
</tr>
<tr>
Tabela dentro de Tabela
<table border="1">
<tr>
<td>
<p>This is a paragraph</p>
<p>This is another paragraph</p>
</td>
<td>This cell contains a table:
<table border="1">
<tr>
<td>A</td>
<td>B</td>
</tr>
<tr>
<td>C</td>
<td>D</td>
</tr>
</table>
</td>
</tr>
<tr>
TABLE BORDERS
<TABLE BORDER>
<TABLE BORDER=10>
TABLE CAPTION
<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>
Exercício
Exercício
TR
2
1
3
4
5
6
7
Exercício
TD
6
1
6
6
6
6
6
37
Exercício
TD Colspan=6
Exercício
<table cellspacing="0" cellpadding="2"
border="3" >
<tr>
<td align="center" colspan="6">
Exercício
TD Colspan=6
Exercício
<tr>
<td align="center" colspan="6">
<font size="5"><i><b>My tech stock
picks</b></i></font></td>
</tr>
Exercício
TR TD TD TD TD TD TD
Exercício
<tr>
<td><font size="2"><b>NAME</b></font>
</td>
<td align="center">
<font size="2"><b>SYMBOL</b></font>
</td>
<td align="center">
<font size="2"><b>CURRENT</b></font>
</td>
<td align="center">
<font size="2"><b>52WK HI</b></font>
</td>
<td align="center">
<font size="2"><b>52WK LO</b></font>
</td>
<td align="center">
<font size="2"><b>P/E RATIO</b></font>
</td>
</tr>
Exercício
TR
TD TD TD TD TD TD
Exercício
<tr>
<td>Microsoft</td>
<td align="center">MSFT</td>
<td align="center">86-3/8</td>
<td align="center">119-15/16</td>
<td align="center">75-1/2</td>
<td align="center">56.09</td>
</tr>
<tr> <td>Cisco Systems</td>
<td align="center">CSCO</td>
<td align="center">72-1/8</td>
<td align="center">82</td>
<td align="center">24-13/16</td>
<td align="center">400.69</td>
</tr>
Exercício
<tr>
<td>America Online</td>
<td align="center">AOL</td>
<td align="center">63</td>
<td align="center">95-13/16</td>
<td align="center">38-15/32</td>
<td align="center">350.00</td>
</tr>
Exercício
<tr>
<td>Qwest Communications</td>
<td align="center">Q</td>
<td align="center">44-7/16</td>
<td align="center">66</td>
<td align="center">25-3/4</td>
<td align="center">74.06</td>
</tr>
Exercício
<tr>
<td>Dell Computers</td>
<td align="center">DELL</td>
<td align="center">53-59/64</td>
<td align="center">59-11/16</td>
<td align="center">31-3/8</td>
<td align="center">86.97</td>
</tr>
</table>

Mais conteúdo relacionado

Semelhante a HTML Tables Guide: Elements, Attributes and Examples

Semelhante a HTML Tables Guide: Elements, Attributes and Examples (20)

HTML 5 Tables and Forms
HTML 5 Tables and FormsHTML 5 Tables and Forms
HTML 5 Tables and Forms
 
HTML Tables
HTML TablesHTML Tables
HTML Tables
 
Html table tags
Html table tagsHtml table tags
Html table tags
 
Chapter 8: Tables
Chapter 8: TablesChapter 8: Tables
Chapter 8: Tables
 
html-lists-tables.ppt
html-lists-tables.ppthtml-lists-tables.ppt
html-lists-tables.ppt
 
Computer Html Links
Computer Html Links Computer Html Links
Computer Html Links
 
HTML Lecture Part 2 of 2
HTML Lecture Part 2 of 2HTML Lecture Part 2 of 2
HTML Lecture Part 2 of 2
 
Table structure introduction
Table structure introductionTable structure introduction
Table structure introduction
 
HTML Tables.ppt
HTML Tables.pptHTML Tables.ppt
HTML Tables.ppt
 
Html
HtmlHtml
Html
 
Web forms and html lecture Number 3
Web forms and html lecture Number 3Web forms and html lecture Number 3
Web forms and html lecture Number 3
 
Handout5 tables
Handout5 tablesHandout5 tables
Handout5 tables
 
v4-html-table-210321161424.pptx
v4-html-table-210321161424.pptxv4-html-table-210321161424.pptx
v4-html-table-210321161424.pptx
 
Session3 part2
Session3 part2Session3 part2
Session3 part2
 
Lecture 5 html table
Lecture 5 html tableLecture 5 html table
Lecture 5 html table
 
Web topic 12 tables in html
Web topic 12  tables in htmlWeb topic 12  tables in html
Web topic 12 tables in html
 
html-table
html-tablehtml-table
html-table
 
html file
html filehtml file
html file
 
3.1 html lec 3
3.1 html lec 33.1 html lec 3
3.1 html lec 3
 
HTML Dasar : #9 Tabel
HTML Dasar : #9 TabelHTML Dasar : #9 Tabel
HTML Dasar : #9 Tabel
 

Mais de Vasco Ferreira

04 03 exercício bikes - escolher elementos
04 03 exercício bikes - escolher elementos04 03 exercício bikes - escolher elementos
04 03 exercício bikes - escolher elementosVasco Ferreira
 
04 01 estrutura de um documento
04 01 estrutura de um documento04 01 estrutura de um documento
04 01 estrutura de um documentoVasco Ferreira
 
02 a formatação de texto em HTML
02 a formatação de texto em HTML02 a formatação de texto em HTML
02 a formatação de texto em HTMLVasco Ferreira
 
ISCIA - Trabalho de Grupo 1
ISCIA - Trabalho de Grupo 1ISCIA - Trabalho de Grupo 1
ISCIA - Trabalho de Grupo 1Vasco Ferreira
 

Mais de Vasco Ferreira (9)

05 01 tabelas2
05 01 tabelas205 01 tabelas2
05 01 tabelas2
 
04 03 exercício bikes - escolher elementos
04 03 exercício bikes - escolher elementos04 03 exercício bikes - escolher elementos
04 03 exercício bikes - escolher elementos
 
04 02 novos elementos
04 02 novos elementos04 02 novos elementos
04 02 novos elementos
 
04 01 estrutura de um documento
04 01 estrutura de um documento04 01 estrutura de um documento
04 01 estrutura de um documento
 
03 h iperlinks
03 h iperlinks03 h iperlinks
03 h iperlinks
 
02 a formatação de texto em HTML
02 a formatação de texto em HTML02 a formatação de texto em HTML
02 a formatação de texto em HTML
 
00 a linguagem html
00 a linguagem html00 a linguagem html
00 a linguagem html
 
Iscia tg2
Iscia tg2Iscia tg2
Iscia tg2
 
ISCIA - Trabalho de Grupo 1
ISCIA - Trabalho de Grupo 1ISCIA - Trabalho de Grupo 1
ISCIA - Trabalho de Grupo 1
 

Último

2022 AWS DNA Hackathon 장애 대응 솔루션 jarvis.
2022 AWS DNA Hackathon 장애 대응 솔루션 jarvis.2022 AWS DNA Hackathon 장애 대응 솔루션 jarvis.
2022 AWS DNA Hackathon 장애 대응 솔루션 jarvis.elesangwon
 
Main Memory Management in Operating System
Main Memory Management in Operating SystemMain Memory Management in Operating System
Main Memory Management in Operating SystemRashmi Bhat
 
Gravity concentration_MI20612MI_________
Gravity concentration_MI20612MI_________Gravity concentration_MI20612MI_________
Gravity concentration_MI20612MI_________Romil Mishra
 
Novel 3D-Printed Soft Linear and Bending Actuators
Novel 3D-Printed Soft Linear and Bending ActuatorsNovel 3D-Printed Soft Linear and Bending Actuators
Novel 3D-Printed Soft Linear and Bending ActuatorsResearcher Researcher
 
Comparative study of High-rise Building Using ETABS,SAP200 and SAFE., SAFE an...
Comparative study of High-rise Building Using ETABS,SAP200 and SAFE., SAFE an...Comparative study of High-rise Building Using ETABS,SAP200 and SAFE., SAFE an...
Comparative study of High-rise Building Using ETABS,SAP200 and SAFE., SAFE an...Erbil Polytechnic University
 
Turn leadership mistakes into a better future.pptx
Turn leadership mistakes into a better future.pptxTurn leadership mistakes into a better future.pptx
Turn leadership mistakes into a better future.pptxStephen Sitton
 
Robotics Group 10 (Control Schemes) cse.pdf
Robotics Group 10  (Control Schemes) cse.pdfRobotics Group 10  (Control Schemes) cse.pdf
Robotics Group 10 (Control Schemes) cse.pdfsahilsajad201
 
Mine Environment II Lab_MI10448MI__________.pptx
Mine Environment II Lab_MI10448MI__________.pptxMine Environment II Lab_MI10448MI__________.pptx
Mine Environment II Lab_MI10448MI__________.pptxRomil Mishra
 
FUNCTIONAL AND NON FUNCTIONAL REQUIREMENT
FUNCTIONAL AND NON FUNCTIONAL REQUIREMENTFUNCTIONAL AND NON FUNCTIONAL REQUIREMENT
FUNCTIONAL AND NON FUNCTIONAL REQUIREMENTSneha Padhiar
 
CS 3251 Programming in c all unit notes pdf
CS 3251 Programming in c all unit notes pdfCS 3251 Programming in c all unit notes pdf
CS 3251 Programming in c all unit notes pdfBalamuruganV28
 
Energy Awareness training ppt for manufacturing process.pptx
Energy Awareness training ppt for manufacturing process.pptxEnergy Awareness training ppt for manufacturing process.pptx
Energy Awareness training ppt for manufacturing process.pptxsiddharthjain2303
 
CME 397 - SURFACE ENGINEERING - UNIT 1 FULL NOTES
CME 397 - SURFACE ENGINEERING - UNIT 1 FULL NOTESCME 397 - SURFACE ENGINEERING - UNIT 1 FULL NOTES
CME 397 - SURFACE ENGINEERING - UNIT 1 FULL NOTESkarthi keyan
 
Module-1-(Building Acoustics) Noise Control (Unit-3). pdf
Module-1-(Building Acoustics) Noise Control (Unit-3). pdfModule-1-(Building Acoustics) Noise Control (Unit-3). pdf
Module-1-(Building Acoustics) Noise Control (Unit-3). pdfManish Kumar
 
multiple access in wireless communication
multiple access in wireless communicationmultiple access in wireless communication
multiple access in wireless communicationpanditadesh123
 
List of Accredited Concrete Batching Plant.pdf
List of Accredited Concrete Batching Plant.pdfList of Accredited Concrete Batching Plant.pdf
List of Accredited Concrete Batching Plant.pdfisabel213075
 
Artificial Intelligence in Power System overview
Artificial Intelligence in Power System overviewArtificial Intelligence in Power System overview
Artificial Intelligence in Power System overviewsandhya757531
 
Prach: A Feature-Rich Platform Empowering the Autism Community
Prach: A Feature-Rich Platform Empowering the Autism CommunityPrach: A Feature-Rich Platform Empowering the Autism Community
Prach: A Feature-Rich Platform Empowering the Autism Communityprachaibot
 
Javier_Fernandez_CARS_workshop_presentation.pptx
Javier_Fernandez_CARS_workshop_presentation.pptxJavier_Fernandez_CARS_workshop_presentation.pptx
Javier_Fernandez_CARS_workshop_presentation.pptxJavier Fernández Muñoz
 
Levelling - Rise and fall - Height of instrument method
Levelling - Rise and fall - Height of instrument methodLevelling - Rise and fall - Height of instrument method
Levelling - Rise and fall - Height of instrument methodManicka Mamallan Andavar
 
Cost estimation approach: FP to COCOMO scenario based question
Cost estimation approach: FP to COCOMO scenario based questionCost estimation approach: FP to COCOMO scenario based question
Cost estimation approach: FP to COCOMO scenario based questionSneha Padhiar
 

Último (20)

2022 AWS DNA Hackathon 장애 대응 솔루션 jarvis.
2022 AWS DNA Hackathon 장애 대응 솔루션 jarvis.2022 AWS DNA Hackathon 장애 대응 솔루션 jarvis.
2022 AWS DNA Hackathon 장애 대응 솔루션 jarvis.
 
Main Memory Management in Operating System
Main Memory Management in Operating SystemMain Memory Management in Operating System
Main Memory Management in Operating System
 
Gravity concentration_MI20612MI_________
Gravity concentration_MI20612MI_________Gravity concentration_MI20612MI_________
Gravity concentration_MI20612MI_________
 
Novel 3D-Printed Soft Linear and Bending Actuators
Novel 3D-Printed Soft Linear and Bending ActuatorsNovel 3D-Printed Soft Linear and Bending Actuators
Novel 3D-Printed Soft Linear and Bending Actuators
 
Comparative study of High-rise Building Using ETABS,SAP200 and SAFE., SAFE an...
Comparative study of High-rise Building Using ETABS,SAP200 and SAFE., SAFE an...Comparative study of High-rise Building Using ETABS,SAP200 and SAFE., SAFE an...
Comparative study of High-rise Building Using ETABS,SAP200 and SAFE., SAFE an...
 
Turn leadership mistakes into a better future.pptx
Turn leadership mistakes into a better future.pptxTurn leadership mistakes into a better future.pptx
Turn leadership mistakes into a better future.pptx
 
Robotics Group 10 (Control Schemes) cse.pdf
Robotics Group 10  (Control Schemes) cse.pdfRobotics Group 10  (Control Schemes) cse.pdf
Robotics Group 10 (Control Schemes) cse.pdf
 
Mine Environment II Lab_MI10448MI__________.pptx
Mine Environment II Lab_MI10448MI__________.pptxMine Environment II Lab_MI10448MI__________.pptx
Mine Environment II Lab_MI10448MI__________.pptx
 
FUNCTIONAL AND NON FUNCTIONAL REQUIREMENT
FUNCTIONAL AND NON FUNCTIONAL REQUIREMENTFUNCTIONAL AND NON FUNCTIONAL REQUIREMENT
FUNCTIONAL AND NON FUNCTIONAL REQUIREMENT
 
CS 3251 Programming in c all unit notes pdf
CS 3251 Programming in c all unit notes pdfCS 3251 Programming in c all unit notes pdf
CS 3251 Programming in c all unit notes pdf
 
Energy Awareness training ppt for manufacturing process.pptx
Energy Awareness training ppt for manufacturing process.pptxEnergy Awareness training ppt for manufacturing process.pptx
Energy Awareness training ppt for manufacturing process.pptx
 
CME 397 - SURFACE ENGINEERING - UNIT 1 FULL NOTES
CME 397 - SURFACE ENGINEERING - UNIT 1 FULL NOTESCME 397 - SURFACE ENGINEERING - UNIT 1 FULL NOTES
CME 397 - SURFACE ENGINEERING - UNIT 1 FULL NOTES
 
Module-1-(Building Acoustics) Noise Control (Unit-3). pdf
Module-1-(Building Acoustics) Noise Control (Unit-3). pdfModule-1-(Building Acoustics) Noise Control (Unit-3). pdf
Module-1-(Building Acoustics) Noise Control (Unit-3). pdf
 
multiple access in wireless communication
multiple access in wireless communicationmultiple access in wireless communication
multiple access in wireless communication
 
List of Accredited Concrete Batching Plant.pdf
List of Accredited Concrete Batching Plant.pdfList of Accredited Concrete Batching Plant.pdf
List of Accredited Concrete Batching Plant.pdf
 
Artificial Intelligence in Power System overview
Artificial Intelligence in Power System overviewArtificial Intelligence in Power System overview
Artificial Intelligence in Power System overview
 
Prach: A Feature-Rich Platform Empowering the Autism Community
Prach: A Feature-Rich Platform Empowering the Autism CommunityPrach: A Feature-Rich Platform Empowering the Autism Community
Prach: A Feature-Rich Platform Empowering the Autism Community
 
Javier_Fernandez_CARS_workshop_presentation.pptx
Javier_Fernandez_CARS_workshop_presentation.pptxJavier_Fernandez_CARS_workshop_presentation.pptx
Javier_Fernandez_CARS_workshop_presentation.pptx
 
Levelling - Rise and fall - Height of instrument method
Levelling - Rise and fall - Height of instrument methodLevelling - Rise and fall - Height of instrument method
Levelling - Rise and fall - Height of instrument method
 
Cost estimation approach: FP to COCOMO scenario based question
Cost estimation approach: FP to COCOMO scenario based questionCost estimation approach: FP to COCOMO scenario based question
Cost estimation approach: FP to COCOMO scenario based question
 

HTML Tables Guide: Elements, Attributes and Examples