File: allcaps_test.html

package info (click to toggle)
grcompiler 5.2.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 24,020 kB
  • sloc: cpp: 48,200; ansic: 7,670; sh: 4,427; makefile: 197; xml: 190; perl: 127; sed: 21
file content (33 lines) | stat: -rw-r--r-- 757 bytes parent folder | download | duplicates (3)
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>