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