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