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