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