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