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