Download as pdf or txt
Download as pdf or txt
You are on page 1of 2

<html>

<head>
<title>
Tabelle con i CSS
</title>
<link rel="stylesheet" type="text/css" href="Tabella.css">
</head>
<body bgclor=#E4E5E0>
<table class = tab>
<caption class =titolo> ANIMALI </caption>
<tr class =primariga>
<td class =primacella>
Cane
</td>
<td class =secondacella>
Gatto
</td>
<td class =terzacella>
Topo
</td>
</tr>
<tr class =secondariga>
<td class =primacella>
Rettile
</td>
<td class =secondacella>
Mammifero
</td>
<td class =terzacella>
Pesce
</td>
</tr>
<tr class =terzariga>
<td class =primacella>
</td>
<td class =secondacella>
Asino
</td>
<td class =terzacella>
Mulo
</td>
</tr>
</table>
</body>
</html>
.titolo {font-family:verdana;color:#004785; font-size:14pt;}
.tab {border-style:double; border-width:4pt; border-color #03C03C}
.primariga {background:#ABCDEF}
.secondariga {background:#E0AFEE}
.terzariga {background:#FFFF66}
.primacella {color:#163279}
.secondacella {color:#9E1519}
.terzacella {color:#177245}

You might also like