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