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