CSS font properties
by danielkwood
HTML
<html>
<head>
<title>Font properties</title>
<link rel="stylesheet" href="theme.css" type="text/css"/>
</head>
<body>
<h1>This is a heading.</h1>
<h2>This is a smaller heading</h2>
<p>This is a paragraph</p>
<p>This is a paragraph</p>
</body>
</html>
CSS
body{
font-family: Arial;
}
h1{
font-family: Arial;
}
p{
font: italic bold 1em Georgia;
}