mirror of
https://github.com/classilla/tenfourfox.git
synced 2024-11-03 19:05:35 +00:00
23 lines
344 B
HTML
23 lines
344 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;
|
|
}
|
|
span {
|
|
font-size: 80px;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div>S<span>MALL</span> C<span>APS</span>
|
|
</body>
|
|
</html>
|