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