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