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