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