HTML Editor
<!DOCTYPE html> <html lang="en-US"> <body> <p id="point"></p> <script> var x = document.getElementById("point"); document.fonts.ready.then(function() { //Run after all FontFaceSets are loaded x.innerHTML = "FontFaceSet of this document is ready"; }); </script> </body> </html>
OUTPUT
×

Save as Private