I was told that when I use @ font-face on a page and someone accesses it, the operating system downloads and installs the font.
I happened to notice the following: when creating a file with @ font-face and access, the font appears correctly, but if I then remove the @ font-face and open the same page, the font does not load, or either, it was not installed on my pc.
I concluded that the source only appears on the site, is this statement correct?
<html>
<head>
<style>
@font-face {
font-family: "scarface";
src: url("/wp-content/uploads/fonts/scarface-webfont.eot"); /* para IE */
src: local("scarface"), url("/wp-content/uploads/fonts/scarface-webfont.ttf") format("opentype");
}
body { font-family: "scarface", Cursive; font-size: 24px; }
</style>
</head>
<body>
Texto
</body>
</html>