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