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