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