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