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