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