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