<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>CSS fonts</title>
<style>
p{
font-family:cursive, Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
font-size: 33px; /*1/96 pixele of per inch*/
line-height: 5em;
}
span{font-weight: bold;
font-style: italic;}
</style>
</head>
<body>
<h2>CSS fonts</h2>
<p>let's play with <span>Fonts</span>. It is very exciting.</p>
</body>
</html>
Comments
Post a Comment