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