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