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