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