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