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