x
<html>
<head>
<title>CSS tutorial</title>
<style type="text/css">
p {
padding:2px;
border:1px groove #ddd;
}
p#p1 {
font: 12px/14px small-caps, monospace;
}
p#p2 {
font: x-large/110% "Palatino", serif;
}
p#p3 {
font: bold italic 0.9em "Arial", sans-serif;
}
p#p4 {
font: Status-bar;
}
</style>
</head>
<body>
<h5>Variaty of <i>font</i> property examples:</h5>
<p id="p1">Monospace, small caps, 12px/14px (family, variant, font size / line height)</p>
<p id="p2">Palatino or serif, x-large/110% (family, font size / line height)</p>
<p id="p3">Arial,bold, italic, 0.9em (family, weight, style, size)</p>
<p id="p4">Font set as 'menu'</p>
</body>
</html>
Comments
No comments have been made yet.
Please login to leave a comment. Login now