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