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