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