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