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