Use on the webTotal Use [ 4549 ] times
1Add to the head section of web page.
<link href="https://db.onlinewebfonts.com/c/f10e54aaa8cb48cf0a0c1f386b54d491?family=Fair+Player+Alternative+Numbers+II" 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/f10e54aaa8cb48cf0a0c1f386b54d491?family=Fair+Player+Alternative+Numbers+II);
orUse font-face declaration Fonts.(http | https)
@font-face {
font-family: "Fair Player Alternative Numbers II";
src: url("https://db.onlinewebfonts.com/t/f10e54aaa8cb48cf0a0c1f386b54d491.eot");
src: url("https://db.onlinewebfonts.com/t/f10e54aaa8cb48cf0a0c1f386b54d491.eot?#iefix")format("embedded-opentype"),
url("https://db.onlinewebfonts.com/t/f10e54aaa8cb48cf0a0c1f386b54d491.woff2")format("woff2"),
url("https://db.onlinewebfonts.com/t/f10e54aaa8cb48cf0a0c1f386b54d491.woff")format("woff"),
url("https://db.onlinewebfonts.com/t/f10e54aaa8cb48cf0a0c1f386b54d491.ttf")format("truetype"),
url("https://db.onlinewebfonts.com/t/f10e54aaa8cb48cf0a0c1f386b54d491.svg#Fair Player Alternative Numbers II")format("svg");
}
2CSS rules to specify fonts
font-family: "Fair Player Alternative Numbers II";