Use on the webTotal Use [ 3110 ] times
1Add to the head section of web page.
<link href="https://db.onlinewebfonts.com/c/b7cfca90ba85f0c9e6ff3aba25fbd729?family=Fox+W01+TRFRegular" rel="stylesheet">
orUsing @import CSS directive, put the following line in add to your css file.(http | https)
@import url(https://db.onlinewebfonts.com/c/b7cfca90ba85f0c9e6ff3aba25fbd729?family=Fox+W01+TRFRegular);
orUse font-face declaration Fonts.(http | https)
@font-face {
font-family: "Fox W01 TRFRegular";
src: url("https://db.onlinewebfonts.com/t/b7cfca90ba85f0c9e6ff3aba25fbd729.eot");
src: url("https://db.onlinewebfonts.com/t/b7cfca90ba85f0c9e6ff3aba25fbd729.eot?#iefix")format("embedded-opentype"),
url("https://db.onlinewebfonts.com/t/b7cfca90ba85f0c9e6ff3aba25fbd729.woff2")format("woff2"),
url("https://db.onlinewebfonts.com/t/b7cfca90ba85f0c9e6ff3aba25fbd729.woff")format("woff"),
url("https://db.onlinewebfonts.com/t/b7cfca90ba85f0c9e6ff3aba25fbd729.ttf")format("truetype"),
url("https://db.onlinewebfonts.com/t/b7cfca90ba85f0c9e6ff3aba25fbd729.svg#Fox W01 TRFRegular")format("svg");
}
2CSS rules to specify fonts
font-family: "Fox W01 TRFRegular";