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