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