kode css adalah kode yg dipakai dalam pembuatan website atau penyusunan templete suatu website atau blog. dengan css ( cssading stylesheet ) akan lebih mengirit tempat atau tidak terlalu banyak memakan tempat dan lebih efisien. contoh penulisan css :
.title { 
    font-size: 13px;
    color: #6095d0;
    font-family: Arial, Helvetica, sans-serif;
    font-weight:bold;
}
.thank {
    font-size: 11px;
    color: #000000;
    font-family: Georgia, "Times New Roman", Times, serif;
}p {
    font-size: 12px;
    color: #000000;
    font-family: verdana;
}
 
 Dibawah ini adalah jenis kode css yg di gunakan untuk membuat website :

a.link1:link {
font-weight: bold;
font-size: 12px;
color: #C87C28;
font-family: Times New Roman;
text-decoration: none;
}
a.link1:visited {
font-weight: bold;
font-size: 12px;
color: #CC6600;
font-family: Times New Roman;
text-decoration: none;
}
a.link1:hover {
font-weight: bold;
font-size: 12px;
color: #C87C28;
font-family: Times New Roman;
text-decoration: underline
}
a.link1:active {
font-weight: bold;
font-size: 12px;
color: #C87C28;
font-family: Times New Roman;
text-decoration: none;
}
a.link2:link {
font-weight: bold;
font-size: 12px;
color: #663300;
font-family: Arial, Helvetica, sans-serif;
text-decoration: underline;
}
a.link2:visited {
font-weight: bold;
font-size: 12px;
color: #800000;
font-family: Arial, Helvetica, sans-serif;
text-decoration: none;
}
a.link2:hover {
font-weight: bold;
font-size: 12px;
color: #ff6600;
font-family: Arial, Helvetica, sans-serif;
text-decoration: underline overline;
}
a.link2:active {
font-weight: bold;
font-size: 12px;
color: #ff6600;
font-family: Arial, Helvetica, sans-serif;
text-decoration: underline;
}
 
dengan adanya css kita dapat mengatur warna dan huruf juga,
kita bosan dengan warna tersebut ktia bisa menggantinya. 
Untuk lebih jelasnya anda bisa klik disini.