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