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