blob: 476bb4c77e9582e5bebc6da28010859a9009892c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
<html>
<head>
<script>
function start () {
const font_1 = new FontFace('m', 'url()', {})
const font_2 = new FontFace('', '')
document.fonts.add(font_1)
font_1.family = 'f'
document.fonts.add(font_2)
}
window.addEventListener('load', start)
</script>
</head>
</html>
|