SlideShare uma empresa Scribd logo
1 de 11
Aula 13
Washington Silva
 Usar tabelas é maneira mais fácil de se trabalhar com o
  alinhamento de textos e imagens é utilizar as tabelas
  como guia.




          Usaremos a TAG <table></table>.
          Uma tabela traz alguns atributos tais
            como:

                 <TR>Cria uma linha</TR>

                <TD> cria uma célula</TD>
    <TABLE>
    <TR>
     <TD>TESTE1</TD>
      <TD>TESTE2</TD>
      <TD>TESTE</TD>
    </TR>.
    </TABLE>




    Dessa forma, nós criaremos 3 colunas
    e 1 linha. Tabela Horizontal.
 Agora, vamos criar       Dessa forma, nós criaremos 3 colunas e
 uma tabela na vertical     1 linha. Tabela Horizontal.


   <table>
   <tr>
   <td> teste </td>
   </tr>
   <tr>
   <td> teste 2</td>
   </tr>
   <tr>
   <td> teste 3</td>
   </tr>
   </table>
Tag <TABLE BORDER>




TABLE BORDER="6">
<TR>
 <TD>TESTE1</TD>
  <TD>TESTE2</TD>
  <TD>TESTE</TD>
</TR>
</TABLE>
<table BORDER="3">
<tr>
<td> teste </td>
</tr>
<tr>
<td> teste 2</td></tr>

<tr>
<td> teste 3</td>
</tr>
     A tag <TABLE BORDERCOLOR> serve para colocar uma
    COR na borda da tabela. Veja só:

<TABLE BORDER="6“
   BORDERCOLOR=“RED>
<TR>
 <TD>TESTE1</TD>
  <TD>TESTE2</TD>
  <TD>TESTE</TD>
</TR>
</TABLE>
• <TD BGCOLOR> Permite colocar uma cor
  dentro de cada célula.

  <TABLE BORDER="6"
     bordercolor="red"> <TR>
   <TD bgcolor="pink">TESTE1</TD>
    <TD bgcolor="yellow">TESTE2</TD>
    <TD bgcolor="blue">TESTE</TD>
  </TR>
  </table>
width="200" height="0" border="3"
  td height="33" bgcolor=

  width="200" border="1"
  <td width="69"
<table width="644" height="254" border="1">




Para achar as cores procure no google por cores html
Sistemas operacionais

Mais conteúdo relacionado

Destaque (6)

Francisultimo
FrancisultimoFrancisultimo
Francisultimo
 
Client Presentation for International Use
Client Presentation for International UseClient Presentation for International Use
Client Presentation for International Use
 
Aula11
Aula11 Aula11
Aula11
 
Apec prova resolvida engenharia civil - 2002 (1)
Apec prova resolvida   engenharia civil - 2002 (1)Apec prova resolvida   engenharia civil - 2002 (1)
Apec prova resolvida engenharia civil - 2002 (1)
 
Clasificacion de los presupuestos
Clasificacion de los presupuestosClasificacion de los presupuestos
Clasificacion de los presupuestos
 
Brand Content L U X E
Brand  Content  L U X EBrand  Content  L U X E
Brand Content L U X E
 

Semelhante a Sistemas operacionais

Semelhante a Sistemas operacionais (6)

05 html tabelas
05 html   tabelas05 html   tabelas
05 html tabelas
 
HTML_Tabelas.pptx
HTML_Tabelas.pptxHTML_Tabelas.pptx
HTML_Tabelas.pptx
 
Html - capitulo 11
Html - capitulo 11Html - capitulo 11
Html - capitulo 11
 
05 01 tabelas2
05 01 tabelas205 01 tabelas2
05 01 tabelas2
 
Html - introdução e exemplos
Html - introdução e exemplosHtml - introdução e exemplos
Html - introdução e exemplos
 
Como inserir tabelas numa página de html.pptx
Como inserir tabelas numa página de html.pptxComo inserir tabelas numa página de html.pptx
Como inserir tabelas numa página de html.pptx
 

Mais de Washington Oliveira (20)

Prova
ProvaProva
Prova
 
Aula 08
Aula 08Aula 08
Aula 08
 
Virus
VirusVirus
Virus
 
Ppt web.pptx 04
Ppt web.pptx 04Ppt web.pptx 04
Ppt web.pptx 04
 
Aula 3
Aula 3Aula 3
Aula 3
 
Aula 02 nova
Aula 02 novaAula 02 nova
Aula 02 nova
 
Ppt web.pptx 02
Ppt web.pptx 02Ppt web.pptx 02
Ppt web.pptx 02
 
Ppt web.pptx 02
Ppt web.pptx 02Ppt web.pptx 02
Ppt web.pptx 02
 
Aula 1
Aula 1Aula 1
Aula 1
 
Aula 03
Aula 03Aula 03
Aula 03
 
Aula 02
Aula 02Aula 02
Aula 02
 
Aula 01
Aula 01Aula 01
Aula 01
 
Word 16
Word 16Word 16
Word 16
 
Aula 07
Aula 07Aula 07
Aula 07
 
Atividade revisão
Atividade revisãoAtividade revisão
Atividade revisão
 
Excel 7 e 8
Excel 7 e 8Excel 7 e 8
Excel 7 e 8
 
Aula06
Aula06Aula06
Aula06
 
Aula 05
Aula 05Aula 05
Aula 05
 
Aula 04
Aula 04Aula 04
Aula 04
 
Ppt web.pptx 03 e 04
Ppt web.pptx 03 e 04Ppt web.pptx 03 e 04
Ppt web.pptx 03 e 04
 

Sistemas operacionais

  • 2.  Usar tabelas é maneira mais fácil de se trabalhar com o alinhamento de textos e imagens é utilizar as tabelas como guia. Usaremos a TAG <table></table>. Uma tabela traz alguns atributos tais como: <TR>Cria uma linha</TR> <TD> cria uma célula</TD>
  • 3. <TABLE>  <TR>  <TD>TESTE1</TD>  <TD>TESTE2</TD>  <TD>TESTE</TD>  </TR>.  </TABLE> Dessa forma, nós criaremos 3 colunas e 1 linha. Tabela Horizontal.
  • 4.  Agora, vamos criar Dessa forma, nós criaremos 3 colunas e  uma tabela na vertical 1 linha. Tabela Horizontal. <table> <tr> <td> teste </td> </tr> <tr> <td> teste 2</td> </tr> <tr> <td> teste 3</td> </tr> </table>
  • 5. Tag <TABLE BORDER> TABLE BORDER="6"> <TR> <TD>TESTE1</TD> <TD>TESTE2</TD> <TD>TESTE</TD> </TR> </TABLE>
  • 6. <table BORDER="3"> <tr> <td> teste </td> </tr> <tr> <td> teste 2</td></tr> <tr> <td> teste 3</td> </tr>
  • 7. A tag <TABLE BORDERCOLOR> serve para colocar uma COR na borda da tabela. Veja só: <TABLE BORDER="6“ BORDERCOLOR=“RED> <TR> <TD>TESTE1</TD> <TD>TESTE2</TD> <TD>TESTE</TD> </TR> </TABLE>
  • 8. • <TD BGCOLOR> Permite colocar uma cor dentro de cada célula. <TABLE BORDER="6" bordercolor="red"> <TR> <TD bgcolor="pink">TESTE1</TD> <TD bgcolor="yellow">TESTE2</TD> <TD bgcolor="blue">TESTE</TD> </TR> </table>
  • 9. width="200" height="0" border="3" td height="33" bgcolor= width="200" border="1" <td width="69"
  • 10. <table width="644" height="254" border="1"> Para achar as cores procure no google por cores html