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