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