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