mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
20 lines
322 B
HTML
20 lines
322 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<style>
|
|
/* load a font that does NOT support the 'smcp' feature */
|
|
@font-face {
|
|
font-family: test;
|
|
src: url(../fonts/dejavu-sans/DejaVuSans.ttf);
|
|
}
|
|
body {
|
|
font: 100px test;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div style="font-variant:small-caps">Small Caps
|
|
</body>
|
|
</html>
|