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