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