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