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