1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-15 17:24:57 +00:00
serenity/Tests/LibWeb/Ref/reference/unicode-range-ref.html
Aliaksandr Kalenik df57d7ca68 LibGfx+LibWeb: Update for_each_glyph_position to use font cascade list
This change updates function that builds list of glyphs to use font
cascade list to find font for each code point.
2023-12-10 17:32:04 +01:00

23 lines
426 B
HTML

<!DOCTYPE html>
<html>
<head>
<style>
@font-face {
font-family: 'HashFont';
src: url('../assets/HashSans.woff');
}
.hash-font {
font-family: 'HashFont';
}
.text {
font-size: 100px;
font-family: "SerenitySans";
}
</style>
</head>
<body>
<div class="text"><span class="hash-font">A</span>B</div>
</body>
</html>