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