Source code
Revision control
Copy as Markdown
Other Tools
<!doctype html>
<html class="reftest-wait">
<meta charset="utf-8" />
<style>
@font-face {
font-family: avar2test_avar1;
src: url(../resources/avar/DesignSpaceWarpTestAvar1[opsz\,wdth\,wght].ttf);
}
body {
font-family: avar2test_avar1, sans-serif;
font-size: 200px;
}
.light-expanded {
font-variation-settings:
"wght" 100,
"wdth" 125;
}
.bold-condensed {
font-variation-settings:
"wght" 900,
"wdth" 75;
}
</style>
H
<span class="light-expanded">H</span>
<span class="bold-condensed">H</span>
<script>
document.fonts.ready.then(() => {
document.documentElement.classList.remove("reftest-wait");
});
</script>
</html>