1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33
|
<html>
<head>
<!-- link rel="stylesheet" href="webfont-HR-LC.css" type="text/css" -->
<style type="text/css">
@font-face {
font-family: NormCaps;
src: url(stddr.ttf);
}
@font-face {
font-family: AllCaps;
src: url(stddr_gr.ttf);
}
.NormCaps {
font-family: NormCaps, sans-serif;
}
.AllCaps {
font-family: AllCaps, sans-serif;
}
body {
font-family: serif, sans-serif;
font-weight: normal; /*** normal or bold ***/
font-style: normal; /*** normal or italic ***/
font-size: 18pt;
}
</style>
</head>
<body>
<h4>Lower ABCs in stddr.ttf</h4>
<p class="NormCaps">abcdefghijklmnopqrstuvwxyz</p>
<h4>Lower ABCs using stddr_gr.ttf</h4>
<p class="AllCaps">abcdefghijklmnopqrstuvwxyz</p>
</body>
</html>
|