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