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