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