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