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