/* site.css */
body { background-image: url('../images/wallpaper.jpg');
background-repeat: no-repeat;
background-attachment: fixed;
background-position:right;
font-family: verdana, geneva, arial, helvetica, sans-serif;
}
h1 {color: red; }
strong {font-weight: bolder;}
ol { font-family: serif;
list-style-type: square;
}
table {border: solid red 4px;
border-collapse: collapse;
background: olive;
}
td {border: solid blue 2px; }
th {border-right: solid black 2px;}
/* classe
.maClasse { color: cyan; }
/* identifiant
#monId { background: orange; }
*/