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