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