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