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