You are on page 1of 2

<!

doctype html>
<html lang="pt-br">
<html>
<head>
<style>
table{background-color:lightgreen;border-color:yellow;border-width:2px;}
.linha1{color:green;}
.linha2{color:red;}
.coluna1{color:blue;}
</style>
<meta charset="utf-8">
<title></title>
</head>
<body>

<TABLE BORDER="1">
<TR class="linha1">
<TH COLSPAN="4">PRINCIPAIS LOJAS E PRODUTOS</TH>
</TR>
<TR class="linha1">
<TH>LOJA</TH>
<TH>PRODUTO</TH>
<TH>MARCA</TH>
<TH>VALOR</TH>
</TR>
<TR>
<TD class="coluna1">Líder</TD>
<TD>Fogão</TD>
<TD>Dako</TD>
<TD>R$450,00</TD>
</TR>
<TR>
<TD class="coluna1">Bahia</TD>
<TD>TV</TD>
<TD>CCE</TD>
<TD>R$850,00</TD>
</TR>
<TR>
<TD class="coluna1">Luiza</TD>
<TD>Geladeira</TD>
<TD>Brastemp</TD>
<TD>R$1.250,00</TD>
</TR>
<TR>
<TD class="coluna1">Wallmart</TD>
<TD>Açúcar</TD>
<TD>União</TD>
<TD>R$9,50</TD>
</TR>
<TD class="coluna1">Extra</TD>
<TD>Arroz</TD>
<TD>Tio João</TD>
<TD>R$10,55</TD>
</TR>
<TR>
<TD class="coluna1">Carrefour</TD>
<TD>Feijão</TD>
<TD>Broto Legal</TD>
<TD>R$8,30</TD>
</TR>

</TABLE>

</body>
</html>

You might also like