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