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