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