Nama File : style.css
Deskripsi : File css sebagai pemanis tampilan
body {CSS biasanya disisipkan di antara tag "<head>----</head>" pada script html.
font-family:verdana;
font-size:11px;
}
a {
color=#0000ff;
text-decoration:underline;
}
a:hover{
color:#ffffff;
background-color=#8AC452;
text-decoration:none;
}
input, textarea, select, option{
font-family:verdana;
}
Contoh:
<head>
<title>Input berita</title>
<link rel="stylesheet" href="style.css">
</head>
0 comments:
Post a Comment