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